Skip to content

Commit

Permalink
Fix bolds with CommitMono
Browse files Browse the repository at this point in the history
  • Loading branch information
itspriddle committed Mar 3, 2024
1 parent 67c1b60 commit 3f17c2b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
10 changes: 10 additions & 0 deletions stylesheets/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,16 @@ h5, h6 {
}


/**
* Bolds
*/
strong, b {
// font-weight: var(--font-weight-bold);
font-weight: normal;
font-variation-settings: "wght" var(--font-weight-bold);
}


/**
* Links
*/
Expand Down
4 changes: 3 additions & 1 deletion stylesheets/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,9 @@
color: var(--table-text-color);
}
th {
font-weight: bolder;
// font-weight: var(--font-weight-bold);
font-weight: normal;
font-variation-settings: "wght" var(--font-weight-bold);
white-space: nowrap;
background-color: var(--table-header-bg);
border: 1px solid var(--table-header-border);
Expand Down

0 comments on commit 3f17c2b

Please sign in to comment.