primefaces / primevue-sass-theme

PrimeVue Theming with SASS
https://primevue.org/theming/#customtheme
MIT License
67 stars 38 forks source link

$fontFamily variable in _variables.scss #65

Open mozart77 opened 7 months ago

mozart77 commented 7 months ago

In themes/fluent/fluent-light/_variables.scss and other themes this

:root {
    font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

should be changed to this

:root {
    font-family: $fontFamily;
    --font-family: $fontFamily;