fix: include latin-ext subset of fonts in admin styles (#11918)

see NodeBB/nodebb-theme-harmony#23
isekai-main
Opliko 1 year ago committed by GitHub
parent 46f7405d42
commit 556a1c4891
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2,18 +2,21 @@
@use "@fontsource/poppins/scss/mixins" as Poppins; @use "@fontsource/poppins/scss/mixins" as Poppins;
$weights: $font-weight-light, $font-weight-normal, $font-weight-semibold, $font-weight-bold; $weights: $font-weight-light, $font-weight-normal, $font-weight-semibold, $font-weight-bold;
$subsets: (latin, latin-ext);
@include Inter.faces( @include Inter.faces(
$weights: $weights, $weights: $weights,
$subsets: $subsets,
$display: fallback, $display: fallback,
$directory: "./plugins/core/inter" $directory: "./plugins/core/inter"
); );
@include Poppins.faces( @include Poppins.faces(
$weights: $weights, $weights: $weights,
$display: fallback, $subsets: $subsets,
$directory: "./plugins/core/poppins" $display: fallback,
$directory: "./plugins/core/poppins"
); );
.ff-base { font-family: $font-family-base !important; } .ff-base { font-family: $font-family-base !important; }
.ff-sans { font-family: $font-family-sans-serif !important; } .ff-sans { font-family: $font-family-sans-serif !important; }
.ff-secondary { font-family: $font-family-secondary; } .ff-secondary { font-family: $font-family-secondary; }

Loading…
Cancel
Save