diff --git a/stylesheets/_base.scss b/stylesheets/_base.scss index 6945723..8965fb0 100644 --- a/stylesheets/_base.scss +++ b/stylesheets/_base.scss @@ -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 */ diff --git a/stylesheets/_layout.scss b/stylesheets/_layout.scss index 636dbfe..af3d1a9 100644 --- a/stylesheets/_layout.scss +++ b/stylesheets/_layout.scss @@ -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);