From 739c9ec4b2f3311ba44e607e2169699af1101ffe Mon Sep 17 00:00:00 2001 From: Nathan Barrett <30009669+nathan-barrett@users.noreply.github.com> Date: Tue, 15 Aug 2023 10:42:55 -0700 Subject: [PATCH] Fix incorrect rem value (#894) --- CHANGELOG.md | 2 +- assets/sass/protocol/includes/themes/_firefox.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8207a758..37bd20e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ # HEAD - +* **css:** Fix incorrect value for `text-body-lg` in firefox theme. # 18.0.0 ## Features diff --git a/assets/sass/protocol/includes/themes/_firefox.scss b/assets/sass/protocol/includes/themes/_firefox.scss index 2c207c70..ae80a8f7 100644 --- a/assets/sass/protocol/includes/themes/_firefox.scss +++ b/assets/sass/protocol/includes/themes/_firefox.scss @@ -52,7 +52,7 @@ --title-3xs-size: 1rem; --title-3xs-line-height: 1.25; --body-xl-size: 1.313rem; - --body-lg-size: 1.1rem; + --body-lg-size: 1.125rem; --body-md-size: 1rem; --body-sm-size: 0.875rem; --body-xs-size: 0.75rem;