diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue
index 3c1ae2937..e517d5e8f 100644
--- a/src/layouts/schedule/schedule.vue
+++ b/src/layouts/schedule/schedule.vue
@@ -11,7 +11,6 @@
cmsWidgetName="AlertMobileFeeFreeWidget"
v-if="showMobileFreeAlert"
alertClass="alert-success" />
-
@@ -700,7 +699,12 @@ export default {
);
},
isAppointmentTypeDisplayed() {
- return this.zipCode && !this.displayNoShopsAlert && this.isServiceableMobile && this.isServiceableInshop;
+ return (
+ this.zipCode &&
+ !this.displayNoShopsAlert &&
+ this.isServiceableMobile &&
+ this.isServiceableInshop
+ );
},
requiresInshopRecalibration() {
// Specifically check for isRecalibrationServiceableMobile === false, not null or true.
@@ -1755,7 +1759,6 @@ export default {
}
}
.alert.alert-warning {
-
.alert-heading {
color: $black;
font-family: UrbanistSemibold;
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 ba2021a17..773e5df19 100644
--- a/src/layouts/schedule/time-slot-question/time-slot-question.vue
+++ b/src/layouts/schedule/time-slot-question/time-slot-question.vue
@@ -653,10 +653,14 @@ export default {
margin-bottom: 8px;
}
}
- .button-question.choose-dropoff-or-inshop .button-inner-wrapper .col:first-child .button-content.list-button-content > span::after {
- content: "TM";
- vertical-align: super;
- font-size: 50%;
+ .button-question.choose-dropoff-or-inshop
+ .button-inner-wrapper
+ .col:first-child
+ .button-content.list-button-content
+ > span::after {
+ content: "TM";
+ vertical-align: super;
+ font-size: 50%;
}
.waitlist {
box-shadow: 0px 1px 4px 0px #00000033;