fix(action-sheet): allow scrollable action-sheet with many options (#20145)

fixes #17311
This commit is contained in:
Liam DeBeasi
2020-01-08 13:29:44 -05:00
committed by Brandy Carney
parent 3b4988aa60
commit 53fad978c5
2 changed files with 1 additions and 3 deletions

View File

@ -32,8 +32,6 @@
.action-sheet-group {
@include border-radius($action-sheet-ios-border-radius);
@include margin(null, null, $action-sheet-ios-group-margin-bottom - 2, null);
overflow: hidden;
}
.action-sheet-group:first-child {

View File

@ -27,7 +27,7 @@
--max-width: #{$action-sheet-max-width};
--min-height: auto;
--height: 100%;
--max-height: 100%;
--max-height: calc(100% - (var(--ion-safe-area-top) + var(--ion-safe-area-bottom)));
@include font-smoothing();
@include position(0, 0, 0, 0);