You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe. Describe alternatives you've considered
I wouldn't like to have to duplicate all the app.scss code to just delete the Lato font import, or if I have light/dark themes in the site, having to either import the complete app.scss under different selectors or duplicate the rules related to colors (which would lead to having to keep a look on styles updates if you update the component)
Describe the solution you'd like
If app.scss is split in 2 files: non theming related and theme related, you could have multiple themes with less css output, and without needing to duplicate the stylesheet (leading to easier upgrades later on). The default font family could be set in the default scss file like calendar.scss, but not in the modular files, to avoid downloading a font you might not want to use.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Describe alternatives you've considered
I wouldn't like to have to duplicate all the
app.scss
code to just delete the Lato font import, or if I have light/dark themes in the site, having to either import the completeapp.scss
under different selectors or duplicate the rules related to colors (which would lead to having to keep a look on styles updates if you update the component)Describe the solution you'd like
If
app.scss
is split in 2 files: non theming related and theme related, you could have multiple themes with less css output, and without needing to duplicate the stylesheet (leading to easier upgrades later on). The default font family could be set in the default scss file likecalendar.scss
, but not in the modular files, to avoid downloading a font you might not want to use.The text was updated successfully, but these errors were encountered: