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);
display: block;
flex-grow: 1;
font-family: system-ui, -apple-system, 'Helvetica Neue', Helvetica, Arial,
sans-serif;
font-size: $font-regular;
line-height: 1.4;
overflow: scroll;

View file

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