diff options
Diffstat (limited to 'src/css/imports/_font-weight.css')
| -rwxr-xr-x | src/css/imports/_font-weight.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/css/imports/_font-weight.css b/src/css/imports/_font-weight.css index fabba82..1fa9182 100755 --- a/src/css/imports/_font-weight.css +++ b/src/css/imports/_font-weight.css @@ -1,5 +1,5 @@ .normal { font-weight: normal; } -.b { font-weight: bold; } +.b { font-weight: var(--bold-font-weight); } .fw1 { font-weight: 100; } .fw2 { font-weight: 200; } .fw3 { font-weight: 300; } @@ -13,7 +13,7 @@ @media (--breakpoint-not-small) { .normal-ns { font-weight: normal; } - .b-ns { font-weight: bold; } + .b-ns { font-weight: var(--bold-font-weight); } .fw1-ns { font-weight: 100; } .fw2-ns { font-weight: 200; } .fw3-ns { font-weight: 300; } @@ -27,7 +27,7 @@ @media (--breakpoint-medium) { .normal-m { font-weight: normal; } - .b-m { font-weight: bold; } + .b-m { font-weight: var(--bold-font-weight); } .fw1-m { font-weight: 100; } .fw2-m { font-weight: 200; } .fw3-m { font-weight: 300; } @@ -41,7 +41,7 @@ @media (--breakpoint-large) { .normal-l { font-weight: normal; } - .b-l { font-weight: bold; } + .b-l { font-weight: var(--bold-font-weight); } .fw1-l { font-weight: 100; } .fw2-l { font-weight: 200; } .fw3-l { font-weight: 300; } |
