Skip to content

Commit

Permalink
Fix default font overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
pkalita-lbl committed Aug 28, 2024
1 parent f1c7cea commit 4d6bec4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
9 changes: 0 additions & 9 deletions _sass/custom/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
*::before {
box-sizing: border-box;

font-family: "Lato", sans-serif;
font-weight: 400 !important;
line-height: $default-line-height;

outline: none;
Expand All @@ -21,10 +19,3 @@ body {
padding-top: $navbar-height + $navbar-margin-bottom;
margin-bottom: 46px;
}

// restoring font-family for FontAwesome icons
.fa,
.fa::after,
.fa::before {
font-family: "FontAwesome";
}
13 changes: 11 additions & 2 deletions css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
---
@charset "utf-8";

$font-family-sans-serif: "Lato", sans-serif;
$font-family-base: $font-family-sans-serif;
$headings-font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
$headings-font-weight: 400;

@import
{% if site.bootwatch %}
"bootswatch/{{site.bootwatch | downcase}}/variables",
Expand All @@ -18,6 +23,10 @@
"typeahead"
;

.navbar {
font-family: $font-family-base;
}



.jumbotron p {
font-weight: 400;
}

0 comments on commit 4d6bec4

Please sign in to comment.