Skip to content

Commit

Permalink
Merge pull request #320 from andersk/patch-1
Browse files Browse the repository at this point in the history
Correct `format()` in `source-code-variable.css`
  • Loading branch information
pauldhunt authored Sep 27, 2023
2 parents d3f1a59 + 11202f8 commit f1680b3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions source-code-variable.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
font-weight: 200 900;
font-style: normal;
font-stretch: normal;
src: url('./WOFF2/VAR/SourceCodeVariable-Roman.ttf.woff2') format('woff2'),
url('./WOFF/VAR/SourceCodeVariable-Roman.ttf.woff') format('woff'),
url('./VAR/SourceCodeVariable-Roman.ttf') format('truetype');
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');
}

@font-face{
font-family: 'Source Code Variable';
font-weight: 200 900;
font-style: italic;
font-stretch: normal;
src: url('./WOFF2/VAR/SourceCodeVariable-Italic.ttf.woff2') format('woff2'),
url('./WOFF/VAR/SourceCodeVariable-Italic.ttf.woff') format('woff'),
url('./VAR/SourceCodeVariable-Italic.ttf') format('truetype');
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');
}

0 comments on commit f1680b3

Please sign in to comment.