fix: Corrected font-face path declarations

This commit is contained in:
Julien Gargot 2023-10-14 13:53:23 +02:00
parent f1680b3312
commit 2d83d01a4c
1 changed files with 8 additions and 8 deletions

View File

@ -1,19 +1,19 @@
@font-face{
font-family: 'Source Code Variable';
font-family: 'Source Code VF';
font-weight: 200 900;
font-style: normal;
font-stretch: normal;
src: url('./WOFF2/VAR/SourceCodeVariable-Roman.ttf.woff2') format('woff2-variations'),
url('./WOFF/VAR/SourceCodeVariable-Roman.ttf.woff') format('woff-variations'),
url('./VAR/SourceCodeVariable-Roman.ttf') format('truetype-variations');
src: url('./WOFF2/VF/SourceCodeVF-Upright.ttf.woff2') format('woff2-variations'),
url('./WOFF/VF/SourceCodeVF-Upright.ttf.woff') format('woff-variations'),
url('./VF/SourceCodeVF-Upright.ttf') format('truetype-variations');
}
@font-face{
font-family: 'Source Code Variable';
font-family: 'Source Code VF';
font-weight: 200 900;
font-style: italic;
font-stretch: normal;
src: url('./WOFF2/VAR/SourceCodeVariable-Italic.ttf.woff2') format('woff2-variations'),
url('./WOFF/VAR/SourceCodeVariable-Italic.ttf.woff') format('woff-variations'),
url('./VAR/SourceCodeVariable-Italic.ttf') format('truetype-variations');
src: url('./WOFF2/VF/SourceCodeVF-Italic.ttf.woff2') format('woff2-variations'),
url('./WOFF/VF/SourceCodeVF-Italic.ttf.woff') format('woff-variations'),
url('./VF/SourceCodeVF-Italic.ttf') format('truetype-variations');
}