Fixes #3277. I've tested in QupZilla on Mac and can confirm it fixes the issue, and that Chrome 58 is not affected (because it has Grid).
.drawer {
flex: 1 1 100%;
overflow: hidden;
- contain: strict;
+ @supports(display: grid) { // hack to fix Chrome <57
+ contain: strict;
+ }
}
@media screen and (min-width: 360px) {
flex: 1 1 auto;
backface-visibility: hidden;
-webkit-overflow-scrolling: touch;
- contain: strict;
+ @supports(display: grid) { // hack to fix Chrome <57
+ contain: strict;
+ }
&.optionally-scrollable {
overflow-y: auto;
flex: 1 1 auto;
align-items: center;
justify-content: center;
- contain: strict;
+ @supports(display: grid) { // hack to fix Chrome <57
+ contain: strict;
+ }
a {
color: $ui-highlight-color;