Thank you for the clarification. I will try this out.On Mon, 29 Jan 2024 at 10:07 PM, Akatu Owunebe <owunebe...@gmail.com> wrote:Your manifest.json file looks fine for making the fonts accessible. However, in your SCSS code, the `format` in `src` attribute of `@font-face` should be set to 'truetype' instead of 'ttf'. Also, make sure the paths to your font files are correct.Here's the corrected code:```scss@font-face {font-family: 'InterRegular';font-weight: 400;src: url('/fonts/Inter-Regular.ttf') format('truetype');}@font-face {font-family: 'InterMedium';font-weight: 500;src: url('/fonts/Inter-Medium.ttf') format('truetype');}@mixin fontSmall_400 {font-family: 'InterRegular', -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
font-size: 12px;font-style: normal;font-weight: 400;line-height: 14px;}@mixin fontSmall_500 {
font-family: 'InterMedium', -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
font-size: 12px;font-style: normal;font-weight: 500;line-height: 14px;}
```Ensure that your font files are located at the correct path, and try reloading your application. If the issue persists, check the browser console for any error messages related to font loading.
--
You received this message because you are subscribed to the Google Groups "Chromium Extensions" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-extens...@chromium.org.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/chromium-extensions/CAHkk8Jz8Upmo%3Dy%3DhM-n%3DZ87HTB3RC6vFRaURJ%2BJazPVf4Cij9A%40mail.gmail.com.