fix(select-popover): non-scrollable popovers no longer have forced overscroll (#23972)

resolves #23971
This commit is contained in:
Liam DeBeasi
2021-09-23 10:05:32 -04:00
committed by GitHub
parent bb126a02e8
commit aa4ba890e9
2 changed files with 2 additions and 18 deletions

View File

@ -1,7 +1,7 @@
@import "./select-popover.vars";
@import "../../themes/ionic.globals";
:host ion-list {
@include margin($select-popover-list-margin-top, $select-popover-list-margin-end, $select-popover-list-margin-bottom, $select-popover-list-margin-start);
@include margin(0);
}
:host ion-list-header,

View File

@ -1,16 +0,0 @@
@import "../../themes/ionic.globals";
// Select
// --------------------------------------------------
/// @prop - Margin top of the select popover list
$select-popover-list-margin-top: -1px !default;
/// @prop - Margin end of the select popover list
$select-popover-list-margin-end: 0 !default;
/// @prop - Margin bottom of the select popover list
$select-popover-list-margin-bottom: -1px !default;
/// @prop - Margin start of the select popover list
$select-popover-list-margin-start: 0 !default;