13 lines
246 B
SCSS
13 lines
246 B
SCSS
/* Fonts list
|
|
========================================================================== */
|
|
$fonts: (
|
|
"G-Light",
|
|
"G-Regular",
|
|
"G-Semibold",
|
|
"M-Extralight",
|
|
"M-Light"
|
|
);
|
|
@each $font in $fonts {
|
|
@include font-face($font);
|
|
}
|