diff --git a/src/fmg-components/cart/cart.vue b/src/fmg-components/cart/cart.vue index 55516010f..a6290e46c 100644 --- a/src/fmg-components/cart/cart.vue +++ b/src/fmg-components/cart/cart.vue @@ -1,5 +1,5 @@ @@ -102,6 +108,7 @@ // Components import textLink from "@/ux-components/text-link/text-link"; import textBlock from "@/digital-components/text-block/text-block"; +import contentGroupModal from "@/fmg-components/content-group-modal/content-group-modal"; // Mixins import baseMixin from "@/mixins/base-mixin.js"; @@ -122,6 +129,8 @@ export default { damage: Object, servicePackageOptionsCmsName: String, availableLineItems: Object, + allowItemRemoval: Boolean, + recyclingModalCmsWidgetName: String, }, data() { return { @@ -135,6 +144,9 @@ export default { }; }, methods: { + openModal(modalName) { + this.$refs[modalName].openModal(); + }, toggleClass: function (event) { this.isActive = !this.isActive; }, @@ -668,6 +680,7 @@ export default { components: { textBlock, textLink, + contentGroupModal, }, }; @@ -678,6 +691,12 @@ export default { border-bottom: 1px solid $gray-500; color: $black; } + .modal-body { + h5 { + text-align: center; + border-bottom: none; + } + } .border-bottom { color: $gray; } @@ -720,6 +739,9 @@ export default { justify-content: flex-end; } } + a { + font-size: 0.875rem; + } } .package-type, .service-type { @@ -751,6 +773,7 @@ export default { } a { order: 3; + margin-right: 100%; } } } diff --git a/src/fmg-components/funnel-header/funnel-header.vue b/src/fmg-components/funnel-header/funnel-header.vue index b5775e649..d9c598bb4 100644 --- a/src/fmg-components/funnel-header/funnel-header.vue +++ b/src/fmg-components/funnel-header/funnel-header.vue @@ -5,14 +5,18 @@ Safelite logo - + + + +