diff --git a/src/layouts/schedule/time-slot-question/time-slot-question.vue b/src/layouts/schedule/time-slot-question/time-slot-question.vue index bba09e785..f0499e11a 100644 --- a/src/layouts/schedule/time-slot-question/time-slot-question.vue +++ b/src/layouts/schedule/time-slot-question/time-slot-question.vue @@ -12,9 +12,7 @@ buttonTypeString="timeSlotModalListButton" :buttonTypeObject="timeSlotModalListButton" class="mt-4" - :class="[ - isMobileAppointment ? 'is-mobile-appointment' : '', - ]" + :class="[isMobileAppointment ? 'is-mobile-appointment' : '']" :answers="availableTimeSlots" groupName="chooseTimeSlot" textPosition="text-center" @@ -242,7 +240,7 @@ export default { /* 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 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.isSameDay) { return this.sameDayDropOffDisclaimerText; @@ -354,7 +352,7 @@ export default { }, isMobileAppointment() { return this.appointmentType === AppointmentTypeStrings.MOBILE; - } + }, }, methods: { async setSelectedTimeSlot() { diff --git a/src/styles/ux-variables.scss b/src/styles/ux-variables.scss index 69ba0d7ac..01b122b31 100644 --- a/src/styles/ux-variables.scss +++ b/src/styles/ux-variables.scss @@ -121,8 +121,8 @@ $body-color: $gray-600; //Fonts $font-family-sans-serif: UrbanistRegular, Arial, Helvetica, sans-serif; -$font-family-monospace: UrbanistRegular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", - monospace; +$font-family-monospace: + UrbanistRegular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; // stylelint-enable value-keyword-case $font-family-base: $font-family-sans-serif; $font-family-code: $font-family-monospace;