From 11bd82ee4cc78e6d33d415c3b93b5d38140199a6 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Fri, 12 Apr 2019 15:05:07 +0100 Subject: [PATCH] Ensure tags appear bold for all browsers In Firefox, the default style is such that it doesn't appear bold with our current selection of specific font weights. This specifically sets a working font weight. --- res/css/_common.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/res/css/_common.scss b/res/css/_common.scss index 4a9c2945f5..11894e414a 100644 --- a/res/css/_common.scss +++ b/res/css/_common.scss @@ -36,6 +36,12 @@ body { color: $warning-color; } +b { + // On Firefox, the default weight for `` 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;