diff --git a/src/layouts/estimate/estimate.vue b/src/layouts/estimate/estimate.vue index 68dbe3426..5e2ff4e15 100644 --- a/src/layouts/estimate/estimate.vue +++ b/src/layouts/estimate/estimate.vue @@ -275,6 +275,7 @@ export default { } .sub-text strong { text-transform: uppercase; + font-weight: 400; } } diff --git a/src/layouts/quote/quote.vue b/src/layouts/quote/quote.vue index 18252e66f..a3b0137f9 100644 --- a/src/layouts/quote/quote.vue +++ b/src/layouts/quote/quote.vue @@ -2,7 +2,9 @@
-
+
@@ -286,6 +288,7 @@ export default { const isEmailInStoreOnPageLoad = emailFromStore?.length > 0; const isPopupSkipped = store.getters.pageData(routeData.QUOTE.name)?.saveProgressPopupSkipped === true; + // "popup" is the automatic opening centered popup on load const showSaveProgressPopup = !(isEmailInStoreOnPageLoad || isPopupSkipped); const showSaveProgressModal = isEmailInStoreOnPageLoad ? false : true; const shouldSkipToInsurance = @@ -555,8 +558,8 @@ export default { servicePackage: null, holdParentAccountNumber: null, holdBillToAccountNumber: null, - showSaveProgressPopup: null, - showSaveProgressModal: null, + showSaveProgressPopup: null, // "popup" is the automatic opening centered popup on load + showSaveProgressModal: null, // "modal" is the user-triggered slide-in drawer isSaveProgressComplete: null, packageNumber: null, skipToInsurance: null, @@ -899,6 +902,10 @@ export default {