mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
fix(overlay): hide scrollbars on non-scrollable content (#16767)
fixes #14178
This commit is contained in:
committed by
Liam DeBeasi
parent
051198928e
commit
875d56363c
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -83,7 +83,7 @@
|
||||
.alert-message {
|
||||
box-sizing: border-box;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
overflow-y: scroll;
|
||||
overflow-y: auto;
|
||||
overscroll-behavior-y: contain;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user