Merge pull request #200 from Safelite/feature/digital/SSR-309

Feature/digital/ssr 309
This commit is contained in:
katiekroell 2023-03-16 13:26:43 -04:00 committed by GitHub
commit b64d73458b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 4 deletions

View file

@ -1,6 +1,4 @@
<template>
<div class="row" >
</div>
<div class="footerImage" id="imgCity" v-if="footerImageURL" >
<img id="siteFooterImage" :src="footerImageURL" />
</div>
@ -160,7 +158,7 @@ export default {
{
text-align: center;
position: sticky;
}
}
@media only screen and (max-width: 340px) {
.footerImage

View file

@ -119,7 +119,7 @@
disableAutoFill />
</div>
</div>
<div class="row mt-4 position-sticky top-100">
<div class="row mt-4 position-sticky top-100" id="welcomeFooter">
<div class="col">
<site-footer
cmsWidgetName="SiteFooterWidget"
@ -342,4 +342,11 @@
{
margin-bottom: 0rem !important;
}
// Temporary solution that prevents the Continue button from being hidden in Firefox
@-moz-document url-prefix() {
#welcomeFooter {
position: static !important;
}
}
</style>