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,14 +2,17 @@
@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,
$subsets: $subsets,
$display: fallback, $display: fallback,
$directory: "./plugins/core/poppins" $directory: "./plugins/core/poppins"
); );

Loading…
Cancel
Save