CSR-436: fix for sometimes hidden footer/elements on iphones

This commit is contained in:
Adam Caouette 2022-04-06 16:46:52 -04:00
parent e7533f3c9c
commit f4fd58b4ed
3 changed files with 5 additions and 1 deletions

View file

@ -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;
}
}

View file

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

View file

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