Merge pull request #324 from Safelite/bugfix/CSR-436

CSR-436: fix for sometimes hidden footer/elements on iphones
This commit is contained in:
AdamCaouetteSafelite 2022-04-06 17:14:09 -04:00 committed by GitHub
commit a494944b4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 1 deletions

View file

@ -160,6 +160,7 @@ export default {
.overflow-scroll { .overflow-scroll {
// Height will be determined by overall height of content above list // Height will be determined by overall height of content above list
height: calc(100% - 300px); height: calc(100% - 300px);
overflow-x: hidden !important;
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
} }
} }

View file

@ -126,5 +126,8 @@ export default {
justify-content: flex-start; justify-content: flex-start;
} }
} }
& > .container-fluid {
overflow-x: visible; // needed to fix hidden footer on some iphones
}
} }
</style> </style>

View file

@ -23,7 +23,7 @@ body {
} }
.container, .container,
.container-fluid { .container-fluid {
overflow-x: hidden !important; overflow-x: hidden;
} }
.sr-only { .sr-only {