Merge pull request #104 from Safelite/feature/SSR-201

Feature/ssr 201
This commit is contained in:
Kulbhushan Kaushik 2023-01-11 12:51:19 -05:00 committed by GitHub
commit 065ce7b14a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
<template> <template>
<div class="row" :style="`padding-bottom: ${paddingHeight}px`"> <div class="row" :style="`padding-bottom: ${paddingHeight}px`">
</div> </div>
<div class="row"> <div class="footerImage" id="imgCity" v-if="footerImageURL" >
<img id="siteFooterImage" :src="footerImageURL" /> <img id="siteFooterImage" :src="footerImageURL" />
</div> </div>
<footer class="footer container-fluid fixed-bottom g-5 bg-light py-4" id="infoBox"> <footer class="footer container-fluid fixed-bottom g-5 bg-light py-4" id="infoBox">
@ -140,4 +140,11 @@ export default {
overflow-x: visible; // needed to fix hidden footer on some iphones overflow-x: visible; // needed to fix hidden footer on some iphones
} }
} }
.footerImage
{
text-align: center;
position: sticky;
bottom: 72px;
width: 100%;
}
</style> </style>