Added media query to adjust footer image when the footer height grows at less than 340 width
This commit is contained in:
parent
a2b8928993
commit
0979544d2d
1 changed files with 9 additions and 1 deletions
|
|
@ -151,6 +151,7 @@ export default {
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
& > .container-fluid {
|
& > .container-fluid {
|
||||||
overflow-x: visible; // needed to fix hidden footer on some iphones
|
overflow-x: visible; // needed to fix hidden footer on some iphones
|
||||||
}
|
}
|
||||||
|
|
@ -160,8 +161,15 @@ export default {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
position: sticky;
|
position: sticky;
|
||||||
bottom: 72px;
|
bottom: 72px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 340px) {
|
||||||
|
.footerImage
|
||||||
|
{
|
||||||
|
bottom: 85px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#siteFooterImage
|
#siteFooterImage
|
||||||
{
|
{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue