Merge pull request #2141 from Safelite/CSR-2409-ios-footer-bug
WIP Test fix or iPhone.
This commit is contained in:
commit
c5d0d2a34e
1 changed files with 12 additions and 0 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue