Added media query to adjust footer image when the footer height grows at less than 340 width

This commit is contained in:
Jason Wheeler 2023-02-03 10:23:19 -05:00
parent a2b8928993
commit 0979544d2d

View file

@ -151,6 +151,7 @@ export default {
justify-content: flex-start;
}
}
& > .container-fluid {
overflow-x: visible; // needed to fix hidden footer on some iphones
}
@ -160,8 +161,15 @@ export default {
text-align: center;
position: sticky;
bottom: 72px;
}
@media only screen and (max-width: 340px) {
.footerImage
{
bottom: 85px;
}
}
#siteFooterImage
{
width: 100%;