CASH-1182

CASH-1182 updated cms, font stylings
This commit is contained in:
Johnny shultz 2025-08-01 09:36:51 -04:00
parent 76e667f7cc
commit 215cd0003d
2 changed files with 18 additions and 3 deletions

View file

@ -1026,6 +1026,8 @@ export default {
flex-grow: 0; flex-grow: 0;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: flex-start;
text-align: left;
.date-picker-header { .date-picker-header {
margin-bottom: 1.5rem; margin-bottom: 1.5rem;

View file

@ -45,7 +45,8 @@
</div> </div>
</div> </div>
<div class="row justify-content-left appointment-type"> <div class="row justify-content-left appointment-type">
<div class="col-md-6"> <div class="col-12 col-md-10 col-lg-8 col-xl-7">
<funnelSubHeader cmsWidgetName="ScheduleYourServiceWidget" class="mt-4" />
<appointmentTypeQuestion <appointmentTypeQuestion
v-model="appointmentTypeFromAppointmentTypeQuestion" v-model="appointmentTypeFromAppointmentTypeQuestion"
v-show="isAppointmentTypeDisplayed" v-show="isAppointmentTypeDisplayed"
@ -61,7 +62,9 @@
labelBold="true" /> labelBold="true" />
</div> </div>
</div> </div>
<div class="col-12 col-md-10 col-lg-8 col-xl-7"> <div
v-if="appointmentType && appointmentType === appointmentTypeStrings.MOBILE"
class="col-12 col-md-10 col-lg-8 col-xl-7">
<funnelSubHeader cmsWidgetName="FunnelSubHeaderWidget" class="mt-4" /> <funnelSubHeader cmsWidgetName="FunnelSubHeaderWidget" class="mt-4" />
<serviceZipModalQuestion <serviceZipModalQuestion
editScreenReaderTextCmsWidgetName="ScreenReaderZipEditWidget" editScreenReaderTextCmsWidgetName="ScreenReaderZipEditWidget"
@ -116,7 +119,7 @@
</div> </div>
</div> </div>
<div class="row justify-content-left date-picker-wrapper"> <div class="row justify-content-left date-picker-wrapper">
<div class="col-md-6 col-xl-4"> <div class="col-12 col-md-10 col-lg-8 col-xl-7">
<locationAlerts cmsWidgetPrefix="LocationAlert-" ref="locationAlerts" /> <locationAlerts cmsWidgetPrefix="LocationAlert-" ref="locationAlerts" />
<datePicker <datePicker
:currentZip="zipCode" :currentZip="zipCode"
@ -1792,4 +1795,14 @@ export default {
background: $blue-100; background: $blue-100;
box-shadow: 0 0 0 1px $primary; box-shadow: 0 0 0 1px $primary;
} }
.schedule-header {
font-weight: 400;
font-size: 20px;
text-align: left;
}
.container .row .col-12 .alert-success .alert-heading{
color: $black;
font-weight: 600;
}
</style> </style>