Skip to content

Commit b70bd20

Browse files
committed
fix(combobox): clip menu inner shadow on shrunk scrollable menu
1 parent 01ff26d commit b70bd20

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

packages/pluggableWidgets/combobox-web/src/ui/Combobox.scss

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ $cb-skeleton-dark: #d2d2d2;
2929
display: flex;
3030
flex-direction: column;
3131
border-radius: var(--dropdown-border-radius, $cb-menu-border-radius);
32-
padding: var(--dropdown-outer-padding, $cb-menu-outer-padding) 0 0;
32+
overflow: hidden;
3333
z-index: 25;
3434
box-shadow: 0px 0px var(--dropdown-outer-padding, $cb-menu-outer-padding) 0px
3535
var(--shadow-color-border, $cb-box-shadow-color);
@@ -44,9 +44,6 @@ $cb-skeleton-dark: #d2d2d2;
4444
min-height: 0;
4545
max-height: 100%;
4646
overflow-y: auto;
47-
&:last-child {
48-
margin-bottom: var(--dropdown-outer-padding, $cb-menu-outer-padding);
49-
}
5047
}
5148
&-lazy-scroll {
5249
background:

0 commit comments

Comments
 (0)