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
It should be extracted into a global css class and added to a new file src/css/fonts.css, from which the class can then be imported into each css module where it is needed, like this example:
/* import global css file */
@import "../../css/grid.css";
.wrapper {
/* use composes syntax to apply classes from the global file to this class */
composes: col-xs-12 col-md-6 col-lg-4;
}
The text was updated successfully, but these errors were encountered:
This CSS is used in various places:
It should be extracted into a global css class and added to a new file
src/css/fonts.css
, from which the class can then be imported into each css module where it is needed, like this example:The text was updated successfully, but these errors were encountered: