Skip to content

Commit

Permalink
Fix an issue where top tabs used wrong font
Browse files Browse the repository at this point in the history
  • Loading branch information
Gum-Joe committed Jun 23, 2021
1 parent be28ae8 commit 8a79fdd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions frontend/src/scss/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,12 @@ html, body, #root, .App {
min-height: 100%;
background-color: $background-default;
color: $text-default;
font-family: "Metropolis", "Open Sans", sans-serif !important;
font-weight: 400 !important;
font-family: "Metropolis", "Open Sans", sans-serif;
font-weight: 400;
}

h1, h2, h3, h4, h5, h6, p, span {
font-family: "Metropolis", "Open Sans", sans-serif;
}

/** Setup flex structure of application - .App is the react root of the site */
Expand Down

0 comments on commit 8a79fdd

Please sign in to comment.