Format code. Hide menu modal.

This commit is contained in:
Bryan Mauger 2025-04-07 09:31:36 -04:00
parent 375d2dd148
commit 3be58faead
4 changed files with 37 additions and 45 deletions

View file

@ -35,7 +35,6 @@ export default {
components: { components: {
loadingModal, loadingModal,
funnelFooter, funnelFooter,
}, },
}; };

View file

@ -3,16 +3,10 @@
<div class="container-fluid"> <div class="container-fluid">
<div class="row"> <div class="row">
<div class="col d-flex justify-content-center justify-content-md-start"> <div class="col d-flex justify-content-center justify-content-md-start">
<img <img class="skyline" src="~@/assets/img/skyline-van.svg" alt="" />
class="skyline"
src="~@/assets/img/skyline-van.svg"
alt="" />
</div> </div>
<div class="col d-none d-md-flex justify-content-end align-items-end"> <div class="col d-none d-md-flex justify-content-end align-items-end">
<img <img class="neighborhood" src="~@/assets/img/neighborhood.svg" alt="" />
class="neighborhood"
src="~@/assets/img/neighborhood.svg"
alt="" />
</div> </div>
</div> </div>
</div> </div>
@ -53,7 +47,6 @@
</template> </template>
<script> <script>
import textLink from "@/ux-components/text-link/text-link"; import textLink from "@/ux-components/text-link/text-link";
export default { export default {

View file

@ -3,7 +3,7 @@
class="funnel-header d-flex justify-content-center align-items-center flex-column" class="funnel-header d-flex justify-content-center align-items-center flex-column"
v-if="imageSrc"> v-if="imageSrc">
<img class="logo-image img-fluid" :src="imageSrc" alt="Safelite logo" /> <img class="logo-image img-fluid" :src="imageSrc" alt="Safelite logo" />
<menuModal/> <!-- <menuModal /> Hide temporarily until re-implemented for use with progress bar. Edit display: none below as well. -->
</div> </div>
<template v-for="globalAlert in globalAlertMessages" :key="globalAlert.id"> <template v-for="globalAlert in globalAlertMessages" :key="globalAlert.id">
<transition name="fade" mode="out-in"> <transition name="fade" mode="out-in">
@ -89,7 +89,7 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
:deep(.menu-modal-container) { :deep(.menu-modal-container) {
display: none; display: none;// This is temporary until the hamburger menu is re-implemented for use with the progress bar
} }
.funnel-header { .funnel-header {
position: relative; position: relative;