Merge pull request #2918 from jryans/bold-for-all

Ensure `<b>` tags appear bold for all browsers
This commit is contained in:
J. Ryan Stinnett 2019-04-15 09:55:09 +01:00 committed by GitHub
commit 32f28a7184
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,6 +36,12 @@ body {
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 {
color: $primary-fg-color;
font-weight: 400;