Merge pull request #324 from Safelite/bugfix/CSR-436
CSR-436: fix for sometimes hidden footer/elements on iphones
This commit is contained in:
commit
a494944b4b
3 changed files with 5 additions and 1 deletions
|
|
@ -160,6 +160,7 @@ export default {
|
|||
.overflow-scroll {
|
||||
// Height will be determined by overall height of content above list
|
||||
height: calc(100% - 300px);
|
||||
overflow-x: hidden !important;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -126,5 +126,8 @@ export default {
|
|||
justify-content: flex-start;
|
||||
}
|
||||
}
|
||||
& > .container-fluid {
|
||||
overflow-x: visible; // needed to fix hidden footer on some iphones
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ body {
|
|||
}
|
||||
.container,
|
||||
.container-fluid {
|
||||
overflow-x: hidden !important;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.sr-only {
|
||||
|
|
|
|||
Loading…
Reference in a new issue