Skip to content

Commit

Permalink
style: dont ignore inter fonts (?)
Browse files Browse the repository at this point in the history
  • Loading branch information
evvvritt committed Oct 4, 2023
1 parent c15c108 commit e92be5e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ node_modules
static/fonts/*
!static/fonts/.gitkeep
!static/fonts/redaction
!static/fonts/inter*
static/twemoji/*
!static/twemoji/.gitkeep
/coverage
Expand Down
10 changes: 5 additions & 5 deletions src/styles/fonts.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,27 @@

@font-face {
font-family: 'Inter Bold';
src: url('fonts/inter-bold-webfont.woff2');
src: url('/fonts/inter-bold-webfont.woff2');
}

@font-face {
font-family: 'Inter SemiBold';
src: url('fonts/inter-semibold-webfont.woff2');
src: url('/fonts/inter-semibold-webfont.woff2');
}

@font-face {
font-family: 'Inter Regular';
src: url('fonts/inter-regular-webfont.woff2');
src: url('/fonts/inter-regular-webfont.woff2');
}

@font-face {
font-family: 'SourceCodePro Bold';
src: url('fonts/SourceCodePro-Bold.otf');
src: url('/fonts/SourceCodePro-Bold.otf');
}

@font-face {
font-family: 'SourceCodePro Regular';
src: url('fonts/SourceCodePro-Regular.otf');
src: url('/fonts/SourceCodePro-Regular.otf');
}

:root {
Expand Down
Binary file added static/fonts/inter-bold-webfont.woff2
Binary file not shown.
Binary file added static/fonts/inter-regular-webfont.woff2
Binary file not shown.
Binary file added static/fonts/inter-semibold-webfont.woff2
Binary file not shown.

0 comments on commit e92be5e

Please sign in to comment.