Skip to content

Commit

Permalink
Added a second font, proxima nova, for larger bodies of text
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurikam2003 committed Jun 22, 2024
1 parent a0f0e7c commit a81fb39
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
Binary file added client/assets/fonts/proximanova_bold.otf
Binary file not shown.
Binary file added client/assets/fonts/proximanova_regular.ttf
Binary file not shown.
9 changes: 7 additions & 2 deletions client/src/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'LittleWitches', sans-serif;
font-family: 'Proxima Nova', sans-serif;
@include devices(tablet) {
user-select: none;
}
Expand All @@ -20,6 +20,11 @@
src: url('../assets/fonts/LittleWitches-K7r7y.otf') format('opentype');
}

@font-face {
font-family: 'Proxima Nova';
src: url('../assets/fonts/proximanova_regular.ttf') format('opentype');
}

@font-face {
font-family: 'Inter';
font-style: normal;
Expand Down Expand Up @@ -52,7 +57,7 @@ html {
background-color: var(--page-bg);
scroll-behavior: smooth;
overflow-x: hidden;
font-family: 'LittleWitches', sans-serif;
font-family: 'Proxima Nova', sans-serif;
}

h1,
Expand Down

0 comments on commit a81fb39

Please sign in to comment.