Merge pull request #2141 from Safelite/CSR-2409-ios-footer-bug

WIP Test fix or iPhone.
This commit is contained in:
bmauger 2024-11-22 09:18:26 -05:00 committed by GitHub
commit c5d0d2a34e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -68,6 +68,18 @@ body {
height: 1px;
overflow: hidden;
}
// Fix "iOS viewport scroll bug" issue on iPhone
// where bottom of page is covered by address bar
@media only screen
and (min-device-width: 375px)
and (max-device-width: 812px)
and (-webkit-min-device-pixel-ratio: 3)
and (orientation: portrait) {
.page-container-grouped-styles {
padding-bottom: 3rem;
}
}
}
.modal-open {
.container-fluid {