Laravel Metronic fonts
Where is the font defined in the Metronic Laravel folder?
Replies (1)
In the Metronic Laravel project, the font is defined in an SCSS file located at:
/resources/_keenthemes/src/sass/components/_variables.scss
The specific variable controlling the font is:
$font-family-sans-serif: Inter, Helvetica, "sans-serif" !default; To override this font setting, you can create a custom override file at:
/resources/_keenthemes/src/sass/components/_variables.override.scss After making changes, it's important to run the following command to compile the assets:
npm run dev This ensures that your modifications take effect in the compiled CSS.