Skip to content

Commit

Permalink
Move bundled fonts to a better location.
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Feb 12, 2022
1 parent 93366f4 commit 481d6ef
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
Binary file added frontend/src/assets/fonts/Inter-Bold.woff2
Binary file not shown.
Binary file added frontend/src/assets/fonts/Inter-Regular.woff2
Binary file not shown.
Binary file removed frontend/src/assets/icons/inter-v3-600.woff2
Binary file not shown.
Binary file removed frontend/src/assets/icons/inter-v3-regular.woff2
Binary file not shown.
4 changes: 2 additions & 2 deletions frontend/src/assets/style.scss
Expand Up @@ -7,7 +7,7 @@
font-style: normal;
font-weight: 400;
src: local(''),
url('assets/icons/inter-v3-regular.woff2') format('woff2'),
url('assets/fonts/Inter-Regular.woff2') format('woff2'),
}

/* import inter-600 */
Expand All @@ -16,7 +16,7 @@
font-style: normal;
font-weight: 600;
src: local(''),
url('assets/icons/inter-v3-600.woff2') format('woff2'),
url('assets/fonts/Inter-Bold.woff2') format('woff2'),
}

$body-family: "Inter", "Helvetica Neue", sans-serif;
Expand Down
2 changes: 1 addition & 1 deletion static/public/static/style.css
Expand Up @@ -8,7 +8,7 @@ html, body {
}
body {
background: #f9f9f9;
font-family: "Open Sans", "Helvetica Neue", sans-serif;
font-family: "Inter", "Open Sans", "Helvetica Neue", sans-serif;
font-size: 16px;
line-height: 26px;
color: #111;
Expand Down

0 comments on commit 481d6ef

Please sign in to comment.