Merge pull request #232 from Safelite/feature/Digital/SSR-374.1

SSR-374
This commit is contained in:
kalutlaram 2023-04-10 20:46:55 +05:30 committed by GitHub
commit 653a2da24a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 7 deletions

View file

@ -4,7 +4,7 @@
<siteHeader cmsWidgetName="SiteHeaderWidget" /> <siteHeader cmsWidgetName="SiteHeaderWidget" />
<siteSubHeader cmsWidgetName="SiteSubHeader" id="sub-header" /> <siteSubHeader cmsWidgetName="SiteSubHeader" id="sub-header" />
<div class="fade-on-route-transition sub-container make-tall overflow-scroller px-5"> <div class="fade-on-route-transition sub-container make-tall overflow-scroller px-5">
<div v-html="ProviderPreferenceHeaderText" class="text-center mb-4 modal-link" ></div> <div v-html="ProviderPreferenceHeaderText" class="text-center mb-5 modal-link" ></div>
<div <div
v-html="ProviderPreferenceBodyText" v-html="ProviderPreferenceBodyText"
class="mt-0 body-text" class="mt-0 body-text"
@ -123,16 +123,16 @@ export default {
overflow-X: hidden !important; overflow-X: hidden !important;
} }
#sub-header span{ #sub-header span{
color: #000000; color: $black;
} }
.body-text p{ .body-text {
margin-bottom: 0.5rem; color: $darker-gray;
p, li {
margin-bottom: 0.5rem;
} }
.body-text li{
margin-bottom: 0.5rem;
} }
.modal-link a{ .modal-link a{
color:#06577C; color: $blue-700;
font-size: 14px; font-size: 14px;
line-height: 24px; line-height: 24px;
font-weight: 500; font-weight: 500;

View file

@ -68,6 +68,9 @@ $orange: #fd7e14;
$teal: #20c997; $teal: #20c997;
$cyan: #0dcaf0; $cyan: #0dcaf0;
// Darker gray
$darker-gray: #525656;
// scss-docs-start colors-map // scss-docs-start colors-map
$colors: ( $colors: (
"blue": $blue, "blue": $blue,
@ -83,6 +86,7 @@ $colors: (
"white": $white, "white": $white,
"gray": $gray, "gray": $gray,
"gray-dark": $gray-500, "gray-dark": $gray-500,
"darker-gray":$darker-gray,
); );
// scss-docs-start theme-color-variables // scss-docs-start theme-color-variables