Fixed font preloading

This commit is contained in:
Edgar P. Burkhart 2020-12-22 10:01:47 +01:00
parent 86ba4ae403
commit de6e8fa18e
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
1 changed files with 4 additions and 4 deletions

View File

@ -4,8 +4,8 @@
font-weight: 400; font-weight: 400;
font-display: swap; font-display: swap;
src: local("Inter Regular"), src: local("Inter Regular"),
url("Inter-Regular.woff2?v=3.15") format("woff2"), url("Inter-Regular.woff2") format("woff2"),
url("Inter-Regular.woff?v=3.15") format("woff"); url("Inter-Regular.woff") format("woff");
} }
@font-face { @font-face {
font-family: 'Inter'; font-family: 'Inter';
@ -13,6 +13,6 @@
font-weight: 800; font-weight: 800;
font-display: swap; font-display: swap;
src: local("Inter Extra Bold"), src: local("Inter Extra Bold"),
url("Inter-ExtraBold.woff2?v=3.15") format("woff2"), url("Inter-ExtraBold.woff2") format("woff2"),
url("Inter-ExtraBold.woff?v=3.15") format("woff"); url("Inter-ExtraBold.woff") format("woff");
} }