CASH-814 | Formatting
This commit is contained in:
parent
aafc3d15df
commit
b7b0f388f7
2 changed files with 5 additions and 7 deletions
|
|
@ -12,9 +12,7 @@
|
||||||
buttonTypeString="timeSlotModalListButton"
|
buttonTypeString="timeSlotModalListButton"
|
||||||
:buttonTypeObject="timeSlotModalListButton"
|
:buttonTypeObject="timeSlotModalListButton"
|
||||||
class="mt-4"
|
class="mt-4"
|
||||||
:class="[
|
:class="[isMobileAppointment ? 'is-mobile-appointment' : '']"
|
||||||
isMobileAppointment ? 'is-mobile-appointment' : '',
|
|
||||||
]"
|
|
||||||
:answers="availableTimeSlots"
|
:answers="availableTimeSlots"
|
||||||
groupName="chooseTimeSlot"
|
groupName="chooseTimeSlot"
|
||||||
textPosition="text-center"
|
textPosition="text-center"
|
||||||
|
|
@ -242,7 +240,7 @@ export default {
|
||||||
/* AppointmentTypeStrings.DROP_OFF should never be used per CASH-803 epic
|
/* AppointmentTypeStrings.DROP_OFF should never be used per CASH-803 epic
|
||||||
but I'm leaving this in assuming that a future card in this epic
|
but I'm leaving this in assuming that a future card in this epic
|
||||||
will handle disclaimers in a different way */
|
will handle disclaimers in a different way */
|
||||||
if (this.appointmentType === AppointmentTypeStrings.DROP_OFF) {
|
if (this.appointmentType === AppointmentTypeStrings.DROP_OFF) {
|
||||||
if (this.selectedRouteCode?.includes(RouteCodeFlags.ALL_DAY_DROP_OFF)) {
|
if (this.selectedRouteCode?.includes(RouteCodeFlags.ALL_DAY_DROP_OFF)) {
|
||||||
if (this.isSameDay) {
|
if (this.isSameDay) {
|
||||||
return this.sameDayDropOffDisclaimerText;
|
return this.sameDayDropOffDisclaimerText;
|
||||||
|
|
@ -354,7 +352,7 @@ export default {
|
||||||
},
|
},
|
||||||
isMobileAppointment() {
|
isMobileAppointment() {
|
||||||
return this.appointmentType === AppointmentTypeStrings.MOBILE;
|
return this.appointmentType === AppointmentTypeStrings.MOBILE;
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
async setSelectedTimeSlot() {
|
async setSelectedTimeSlot() {
|
||||||
|
|
|
||||||
|
|
@ -121,8 +121,8 @@ $body-color: $gray-600;
|
||||||
|
|
||||||
//Fonts
|
//Fonts
|
||||||
$font-family-sans-serif: UrbanistRegular, Arial, Helvetica, sans-serif;
|
$font-family-sans-serif: UrbanistRegular, Arial, Helvetica, sans-serif;
|
||||||
$font-family-monospace: UrbanistRegular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
|
$font-family-monospace:
|
||||||
monospace;
|
UrbanistRegular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||||
// stylelint-enable value-keyword-case
|
// stylelint-enable value-keyword-case
|
||||||
$font-family-base: $font-family-sans-serif;
|
$font-family-base: $font-family-sans-serif;
|
||||||
$font-family-code: $font-family-monospace;
|
$font-family-code: $font-family-monospace;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue