Skip to content

Commit

Permalink
Merge pull request #822 from coderefinery/eglerean-css
Browse files Browse the repository at this point in the history
font served locally, fixes #817
  • Loading branch information
bast authored Feb 9, 2024
2 parents 48b381a + c64b370 commit 415502c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion sass/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,14 @@ $table-header-cell-color: #666666;
@import "../uikit/src/scss/mixins-theme.scss";
@import "../uikit/src/scss/uikit-theme.scss";

@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(Roboto.ttf) format('truetype');
}


* {
font-family: 'Roboto', sans-serif;
Expand Down
Binary file added static/Roboto.ttf
Binary file not shown.

0 comments on commit 415502c

Please sign in to comment.