From 18ead1be275d61f6a635fcde3a5e85b07c767466 Mon Sep 17 00:00:00 2001 From: bmauger Date: Wed, 9 Feb 2022 09:35:27 -0500 Subject: [PATCH] CSR-257 WIP --- .../funnel-footer/funnel-footer.vue | 14 ++++++-------- src/styles/common-styles.scss | 1 + 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/src/common-components/funnel-footer/funnel-footer.vue b/src/common-components/funnel-footer/funnel-footer.vue index b3f75d4c7..56e483b6d 100644 --- a/src/common-components/funnel-footer/funnel-footer.vue +++ b/src/common-components/funnel-footer/funnel-footer.vue @@ -3,7 +3,7 @@
- ©  Safelite Group + © {{new Date().getFullYear()}} Safelite Group
@@ -16,10 +16,10 @@
-
+
-
+
@@ -42,15 +42,13 @@ export default { paddingHeight: 0, backLink: "", buttonText: "", + currentYear: new Date().getFullYear(), } }, mounted() { this.paddingHeight = document.getElementById("infoBox").offsetHeight + 24; this.$nextTick(() => { window.addEventListener('resize', this.onResize); - }) - this.$nextTick(function () { // Give it a moment to set the date - document.getElementById('years').innerHTML += new Date().getFullYear(); this.checkHeight(); }) }, @@ -76,8 +74,8 @@ export default { } }, initializeComponent(cmsContent) { - this.buttonText = cmsContent.BackButtonText; - this.backLink = cmsContent.ForwardButtonText; + this.backLink = cmsContent.BackButtonText; + this.buttonText = cmsContent.ForwardButtonText; }, buttonClick() { this.$emit("forwardClicked"); diff --git a/src/styles/common-styles.scss b/src/styles/common-styles.scss index ae409dd36..8d7133884 100644 --- a/src/styles/common-styles.scss +++ b/src/styles/common-styles.scss @@ -6,6 +6,7 @@ body { .container-fluid { max-width: 576px; //Remove once desktop app is complete + // min-width: 360px; &.container-shadow { box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.15); //Use instead of Bootstrap's helper }