1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-19 19:05:32 -04:00

remove unicode-range from font-face, system font was still being called

This commit is contained in:
2019-12-18 00:58:07 -05:00
parent 6809343ec6
commit 6d03c88013
4 changed files with 4 additions and 5 deletions

View File

@@ -14,8 +14,7 @@
// Web fonts (see components/_webfonts.scss)
@mixin font-face($family, $src-local, $src-local-alt, $src,
$style: normal, $weight: normal,
$range: U+000-5FF, $display: swap) {
$style: normal, $weight: normal, $display: swap) {
@font-face {
font-family: $family;
font-style: $style;
@@ -26,6 +25,5 @@
url('#{$src}.woff') format('woff');
// url('#{$src}.ttf') format('truetype'),
// url('#{$src}.eot') format('embedded-opentype');
unicode-range: $range;
}
}