prettier formatting
This commit is contained in:
parent
fb507f358a
commit
59e103c4d6
2 changed files with 14 additions and 7 deletions
|
|
@ -11,7 +11,6 @@
|
||||||
cmsWidgetName="AlertMobileFeeFreeWidget"
|
cmsWidgetName="AlertMobileFeeFreeWidget"
|
||||||
v-if="showMobileFreeAlert"
|
v-if="showMobileFreeAlert"
|
||||||
alertClass="alert-success" />
|
alertClass="alert-success" />
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row appointment-type">
|
<div class="row appointment-type">
|
||||||
|
|
@ -700,7 +699,12 @@ export default {
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
isAppointmentTypeDisplayed() {
|
isAppointmentTypeDisplayed() {
|
||||||
return this.zipCode && !this.displayNoShopsAlert && this.isServiceableMobile && this.isServiceableInshop;
|
return (
|
||||||
|
this.zipCode &&
|
||||||
|
!this.displayNoShopsAlert &&
|
||||||
|
this.isServiceableMobile &&
|
||||||
|
this.isServiceableInshop
|
||||||
|
);
|
||||||
},
|
},
|
||||||
requiresInshopRecalibration() {
|
requiresInshopRecalibration() {
|
||||||
// Specifically check for isRecalibrationServiceableMobile === false, not null or true.
|
// Specifically check for isRecalibrationServiceableMobile === false, not null or true.
|
||||||
|
|
@ -1755,7 +1759,6 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.alert.alert-warning {
|
.alert.alert-warning {
|
||||||
|
|
||||||
.alert-heading {
|
.alert-heading {
|
||||||
color: $black;
|
color: $black;
|
||||||
font-family: UrbanistSemibold;
|
font-family: UrbanistSemibold;
|
||||||
|
|
|
||||||
|
|
@ -653,10 +653,14 @@ export default {
|
||||||
margin-bottom: 8px;
|
margin-bottom: 8px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.button-question.choose-dropoff-or-inshop .button-inner-wrapper .col:first-child .button-content.list-button-content > span::after {
|
.button-question.choose-dropoff-or-inshop
|
||||||
content: "TM";
|
.button-inner-wrapper
|
||||||
vertical-align: super;
|
.col:first-child
|
||||||
font-size: 50%;
|
.button-content.list-button-content
|
||||||
|
> span::after {
|
||||||
|
content: "TM";
|
||||||
|
vertical-align: super;
|
||||||
|
font-size: 50%;
|
||||||
}
|
}
|
||||||
.waitlist {
|
.waitlist {
|
||||||
box-shadow: 0px 1px 4px 0px #00000033;
|
box-shadow: 0px 1px 4px 0px #00000033;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue