Ensure <b> tags appear bold for all browsers
In Firefox, the default <b> style is such that it doesn't appear bold with our current selection of specific font weights. This specifically sets a working font weight.
This commit is contained in:
parent
86a6037a12
commit
11bd82ee4c
1 changed files with 6 additions and 0 deletions
|
@ -36,6 +36,12 @@ body {
|
||||||
color: $warning-color;
|
color: $warning-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
b {
|
||||||
|
// On Firefox, the default weight for `<b>` is `bolder` which results in no bold
|
||||||
|
// effect since we only have specific weights of our fonts available.
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
color: $primary-fg-color;
|
color: $primary-fg-color;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
|
|
Loading…
Reference in a new issue