From 01756a837945b509883e41a0aa54d9275f5904ff Mon Sep 17 00:00:00 2001 From: Scott Kiener Date: Fri, 9 Jun 2023 10:03:41 -0400 Subject: [PATCH 1/3] CSR-1137 | Fixing bullet point list formatting --- .../time-slot-modal-question.vue | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue b/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue index 7e9b5a279..fd0a9368c 100644 --- a/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue +++ b/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue @@ -24,7 +24,7 @@ validationRules="time-slot-required" class="mt-5" />
+ class="mb-2 mt-4" /> @@ -317,5 +317,15 @@ export default { .text-block.duration-text-block { margin-top: 0 !important; } + .supplemental-information { + line-height: 1.5rem; + font-size: 0.875rem; + li strong { + font-weight: $font-weight-bold; + } + li:not(:last-child) { + margin-bottom: 16px; + } + } } From 794eb5a0eae88ae99aa430ed77de07c1719d4fc5 Mon Sep 17 00:00:00 2001 From: Scott Kiener Date: Mon, 12 Jun 2023 08:12:06 -0400 Subject: [PATCH 2/3] CSR-1137 | Early-bird bullet point fix --- .../time-slot-modal-question/time-slot-modal-question.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue b/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue index fd0a9368c..cc7946366 100644 --- a/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue +++ b/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue @@ -111,7 +111,7 @@ export default { return null; } else if (this.appointmentType === AppointmentTypeStrings.MOBILE) { appointmentTypeCmsWidgetName = - this.selectedTimeSlotId === this.premiumAppointmentButtonText + this.selectedTimeSlotId?.includes(PREMIUM_TIME_SLOT_ID_FLAG) ? this.mobilePremiumCmsWidgetName : this.mobileCmsWidgetName; } else { From 19dadd7ec4427c9ea3335009a4f6db62cd0aca0c Mon Sep 17 00:00:00 2001 From: Scott Kiener Date: Mon, 12 Jun 2023 08:16:19 -0400 Subject: [PATCH 3/3] CSR-1137 | Formatting --- .../time-slot-modal-question.vue | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue b/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue index cc7946366..34086b728 100644 --- a/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue +++ b/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue @@ -110,10 +110,11 @@ export default { if (this.appointmentType === AppointmentTypeStrings.IN_SHOP) { return null; } else if (this.appointmentType === AppointmentTypeStrings.MOBILE) { - appointmentTypeCmsWidgetName = - this.selectedTimeSlotId?.includes(PREMIUM_TIME_SLOT_ID_FLAG) - ? this.mobilePremiumCmsWidgetName - : this.mobileCmsWidgetName; + appointmentTypeCmsWidgetName = this.selectedTimeSlotId?.includes( + PREMIUM_TIME_SLOT_ID_FLAG + ) + ? this.mobilePremiumCmsWidgetName + : this.mobileCmsWidgetName; } else { appointmentTypeCmsWidgetName = this.isSameDay ? this.sameDayDropOffCmsWidgetName