From 359e026e601d07b8beeeaa15bc33c2bf1f2d1035 Mon Sep 17 00:00:00 2001 From: scottkiener-at-safelite Date: Tue, 20 Jan 2026 14:16:01 -0500 Subject: [PATCH 1/3] INSR-8111 | Fix one of the issues Changed text-link type to fix font weight --- src/layouts/provider-preference/provider-preference.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/provider-preference/provider-preference.vue b/src/layouts/provider-preference/provider-preference.vue index 95a66d96..a5f578e1 100644 --- a/src/layouts/provider-preference/provider-preference.vue +++ b/src/layouts/provider-preference/provider-preference.vue @@ -29,7 +29,7 @@ v-html="scheduleWithOtherText"> From dd3a45dae005a553d18d7d27818a0a755125d5d8 Mon Sep 17 00:00:00 2001 From: scottkiener-at-safelite Date: Wed, 21 Jan 2026 10:31:15 -0500 Subject: [PATCH 2/3] Update body text color to darker gray to match heritage --- src/styles/common-styles.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/common-styles.scss b/src/styles/common-styles.scss index d60114d6..69040d94 100644 --- a/src/styles/common-styles.scss +++ b/src/styles/common-styles.scss @@ -9,7 +9,7 @@ body { font-size: 16px; letter-spacing: $letter-spacing-primary; background-color: #fff; - color: #4d5151; + color: $darker-gray; .container-fluid { .prevent-squish { From abc35b6bc35b497913023313223f805dcb2d8e0d Mon Sep 17 00:00:00 2001 From: scottkiener-at-safelite Date: Wed, 21 Jan 2026 11:53:19 -0500 Subject: [PATCH 3/3] Correctly use the body color variable --- src/styles/common-styles.scss | 2 +- src/styles/ux-variables.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/common-styles.scss b/src/styles/common-styles.scss index 69040d94..8f0e811a 100644 --- a/src/styles/common-styles.scss +++ b/src/styles/common-styles.scss @@ -9,7 +9,7 @@ body { font-size: 16px; letter-spacing: $letter-spacing-primary; background-color: #fff; - color: $darker-gray; + color: $body-color; .container-fluid { .prevent-squish { diff --git a/src/styles/ux-variables.scss b/src/styles/ux-variables.scss index 41cd8269..bf57276e 100644 --- a/src/styles/ux-variables.scss +++ b/src/styles/ux-variables.scss @@ -114,7 +114,7 @@ $theme-colors: ( ); //Default font color -$body-color: $gray-600; +$body-color: $darker-gray; //Fonts $font-family-sans-serif: Urbanist, Roboto, Arial, sans-serif;