We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95ab4c4 commit e993c57Copy full SHA for e993c57
assets/sass/protocol/base/elements/_titles.scss
@@ -12,9 +12,10 @@ h3,
12
h4,
13
h5,
14
h6 {
15
+ $default-font-weight: bold;
16
font-family: $title-font-family;
17
color: $title-text-color;
- font-weight: bold;
18
+ font-weight: $default-font-weight;
19
margin: 0 0 0.5em;
20
21
.mzp-t-dark & {
@@ -24,7 +25,7 @@ h6 {
24
25
@supports (--css: variables) {
26
font-family: var(--title-font-family);
27
font-variant-ligatures: var(--title-font-ligatures);
- font-weight: var(--title-font-weight);
28
+ font-weight: var(--title-font-weight, #{$default-font-weight});
29
letter-spacing: var(--title-letter-spacing);
30
color: var(--title-text-color);
31
0 commit comments