You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
617 B
SCSS
21 lines
617 B
SCSS
@use "@fontsource/inter/scss/mixins" as Inter;
|
|
@use "@fontsource/poppins/scss/mixins" as Poppins;
|
|
|
|
$weights: $font-weight-light, $font-weight-normal, $font-weight-semibold, $font-weight-bold;
|
|
|
|
@each $weight in $weights {
|
|
@include Inter.fontFace(
|
|
$weight: $weight,
|
|
$display: fallback,
|
|
$fontDir: "./plugins/core/inter"
|
|
);
|
|
@include Poppins.fontFace(
|
|
$weight: $weight,
|
|
$display: fallback,
|
|
$fontDir: "./plugins/core/poppins"
|
|
);
|
|
}
|
|
|
|
.ff-base { font-family: $font-family-base !important; }
|
|
.ff-sans { font-family: $font-family-sans-serif !important; }
|
|
.ff-secondary { font-family: $font-family-secondary; } |