mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-02 03:55:55 +01:00
fix: include latin-ext subset of fonts in admin styles (#11918)
see NodeBB/nodebb-theme-harmony#23
This commit is contained in:
@@ -2,18 +2,21 @@
|
||||
@use "@fontsource/poppins/scss/mixins" as Poppins;
|
||||
|
||||
$weights: $font-weight-light, $font-weight-normal, $font-weight-semibold, $font-weight-bold;
|
||||
$subsets: (latin, latin-ext);
|
||||
|
||||
@include Inter.faces(
|
||||
$weights: $weights,
|
||||
$subsets: $subsets,
|
||||
$display: fallback,
|
||||
$directory: "./plugins/core/inter"
|
||||
);
|
||||
@include Poppins.faces(
|
||||
$weights: $weights,
|
||||
$display: fallback,
|
||||
$directory: "./plugins/core/poppins"
|
||||
$weights: $weights,
|
||||
$subsets: $subsets,
|
||||
$display: fallback,
|
||||
$directory: "./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; }
|
||||
.ff-secondary { font-family: $font-family-secondary; }
|
||||
|
||||
Reference in New Issue
Block a user