Skip to content

Commit 5542a93

Browse files
committed
feat(alert): allow smooth overflow scrolling
1 parent 3c49365 commit 5542a93

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/components/alert/alert.ios.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,9 @@ $alert-ios-checkbox-icon-transform: rotate(45deg) !default;
171171
max-height: $alert-ios-content-max-height;
172172

173173
border-top: $alert-ios-list-border-top;
174+
175+
-webkit-overflow-scrolling: touch;
176+
174177
}
175178

176179
.alert-tappable {

src/components/alert/alert.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ ion-alert {
5353
}
5454

5555
.alert-message {
56-
overflow: auto;
56+
overflow-y: scroll;
57+
58+
-webkit-overflow-scrolling: touch;
5759
}
5860

5961
.alert-input {

0 commit comments

Comments
 (0)