fix(overlay): hide scrollbars on non-scrollable content (#16767)

fixes #14178
This commit is contained in:
Paul Stelzer
2019-05-15 16:33:33 +02:00
committed by Liam DeBeasi
parent 051198928e
commit 875d56363c
3 changed files with 3 additions and 3 deletions

View File

@@ -102,7 +102,7 @@
.action-sheet-group {
flex-shrink: 2;
overscroll-behavior-y: contain;
overflow-y: scroll;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
pointer-events: all;

View File

@@ -112,7 +112,7 @@
max-height: $alert-ios-content-max-height;
border-top: $alert-ios-list-border-top;
overflow-y: scroll;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}

View File

@@ -83,7 +83,7 @@
.alert-message {
box-sizing: border-box;
-webkit-overflow-scrolling: touch;
overflow-y: scroll;
overflow-y: auto;
overscroll-behavior-y: contain;
}