1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 23:08:26 -04:00

non-variable Inter font was still loading on Chrome

This commit is contained in:
Jake Jarvis 2020-07-22 16:54:22 -04:00
parent 6f7b14f43a
commit f306452fe6
Signed by: jake
GPG Key ID: 2B0C9CF251E69A39
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
// Web fonts
$webfont-sans: "Inter", sans-serif;
$webfont-sans-variable: "Inter var";
$webfont-sans-variable: "Inter var", sans-serif;
$webfont-mono: "Hack", monospace;
// System fonts

View File

@ -18,7 +18,7 @@ body {
// stylelint-disable-next-line plugin/no-unsupported-browser-features
@supports (font-variation-settings: normal) {
body {
font-family: $webfont-sans-variable, $webfont-sans;
font-family: $webfont-sans-variable;
}
}