diff --git a/playwright-tests/pages/HomePage.ts b/playwright-tests/pages/HomePage.ts index b28dd75a4..39e349790 100644 --- a/playwright-tests/pages/HomePage.ts +++ b/playwright-tests/pages/HomePage.ts @@ -30,7 +30,7 @@ export class HomePage extends BasePage { super(page); this.page = page; - this.letsGetStartedButton = this.page.locator('.hero-content #zipCodeTextboxButton'); + this.letsGetStartedButton = this.page.locator('#zipCodeTextboxButton'); this.cusmodalPopup = this.page.locator('#Cusmodalpopup'); this.closePopupButton = this.page.getByRole('button', { name: '×' }); diff --git a/src/fmg-components/funnel-footer/funnel-footer.vue b/src/fmg-components/funnel-footer/funnel-footer.vue index a195c446b..5d8d0cd80 100644 --- a/src/fmg-components/funnel-footer/funnel-footer.vue +++ b/src/fmg-components/funnel-footer/funnel-footer.vue @@ -75,17 +75,12 @@ export default { :deep(a) { text-decoration: none; - &.new-window-link { - font-family: Urbanist, Arial, Helvetica, sans-serif; - margin: 0 0.75rem; - color: $gray-600; - font-weight: 400; - } + &.new-window-link, &.navigation-link { - font-family: Urbanist, Arial, Helvetica, sans-serif; + font-family: UrbanistRegular, Arial, Helvetica, sans-serif; margin: 0 0.75rem; color: $gray-600; - font-weight: 400; + font-weight: initial; } } diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index 21c16d80b..955d106b5 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -986,8 +986,9 @@ export default { } } } -:deep(span.label) { - font-weight: 600; +:deep(span.label), +:deep(span) { + font-family: UrbanistSemibold, Arial, Helvetica, sans-serif; } :deep(div.service-questions span) { color: $black; diff --git a/src/layouts/quote/quote.vue b/src/layouts/quote/quote.vue index 17326ec8e..01b585349 100644 --- a/src/layouts/quote/quote.vue +++ b/src/layouts/quote/quote.vue @@ -581,7 +581,7 @@ export default { return store.getters.isRecalibrationOnOrder; }, isQuotePageDiscountOnOrder() { - return this.quotePageDiscountPartsInfo?.length > 0; + return this.quoteDiscountPartsInfo?.length > 0; }, shouldHideRecalibration() { return ( diff --git a/src/layouts/quote/service-package-question/service-package-radio/service-package-radio.vue b/src/layouts/quote/service-package-question/service-package-radio/service-package-radio.vue index 8bb7e921a..959c7345e 100644 --- a/src/layouts/quote/service-package-question/service-package-radio/service-package-radio.vue +++ b/src/layouts/quote/service-package-question/service-package-radio/service-package-radio.vue @@ -294,12 +294,11 @@ export default { .pricing-info .insurance-pricing span { font-size: 0.875rem; - font-family: Urbanist, Arial, Helvetica, sans-serif; - font-weight: 500; + font-family: UrbanistSemibold, Arial, Helvetica, sans-serif; } p { - font-family: Urbanist, Arial, Helvetica, sans-serif; + font-family: UrbanistSemibold, Arial, Helvetica, sans-serif; display: flex; justify-content: space-between; align-items: center; @@ -312,7 +311,6 @@ export default { color: $green; font-size: 0.875rem; font-family: UrbanistSemibold, Arial, Helvetica, sans-serif; - font-weight: 600; @include media-breakpoint-up(md) { position: absolute; bottom: 0.75rem; diff --git a/src/layouts/schedule/mobile-first-modal/mobile-first-modal.vue b/src/layouts/schedule/mobile-first-modal/mobile-first-modal.vue index 2dbde3bd9..1ef9fbc54 100644 --- a/src/layouts/schedule/mobile-first-modal/mobile-first-modal.vue +++ b/src/layouts/schedule/mobile-first-modal/mobile-first-modal.vue @@ -76,6 +76,7 @@ export default { let selectedTimeSlot = { timeSlot: this.selectedAppontment.timeSlot, routeCode: this.selectedAppontment.timeSlot.id, + date: this.selectedAppontment.date, }; this.$emit("confirm-appointment", selectedTimeSlot); this.modal.closeModal(); diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue index 3b4fec04c..5c54c07f3 100644 --- a/src/layouts/schedule/schedule.vue +++ b/src/layouts/schedule/schedule.vue @@ -1,6 +1,6 @@