mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-10 00:27:41 +08:00
fix(action-sheet): allow scrollable action-sheet with many options (#20145)
fixes #17311
This commit is contained in:
committed by
Brandy Carney
parent
3b4988aa60
commit
53fad978c5
@ -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 {
|
||||
|
||||
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user