Implement custom font in styles

This commit is contained in:
Justin Edmund 2023-08-20 04:07:52 -07:00
parent e9ead2c7b3
commit 51eb937e0a
2 changed files with 2 additions and 4 deletions

View file

@ -22,8 +22,6 @@
color: var(--text-primary); color: var(--text-primary);
display: block; display: block;
flex-grow: 1; flex-grow: 1;
font-family: system-ui, -apple-system, 'Helvetica Neue', Helvetica, Arial,
sans-serif;
font-size: $font-regular; font-size: $font-regular;
line-height: 1.4; line-height: 1.4;
overflow: scroll; overflow: scroll;

View file

@ -10,8 +10,7 @@ html {
body { body {
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
box-sizing: border-box; box-sizing: border-box;
font-family: system-ui, -apple-system, 'Helvetica Neue', Helvetica, Arial, font-family: var(--font-family);
sans-serif;
font-size: 1.4rem; font-size: 1.4rem;
height: 100%; height: 100%;
padding: $unit-2x !important; padding: $unit-2x !important;
@ -26,6 +25,7 @@ body {
} }
main { main {
font-family: var(--font-goalking);
min-height: 90%; min-height: 90%;
} }