Skip to content

Commit f90a770

Browse files
shiba-codesLena Rashkovan
and
Lena Rashkovan
authored
fix: fix overflow in popover (#483)
Co-authored-by: Lena Rashkovan <[email protected]>
1 parent 5a6e935 commit f90a770

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/components/experimental/ComboBox/ComboBox.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ const defaultAriaStrings = {
2727

2828
const StyledPopover = styled(Popover)`
2929
box-sizing: border-box;
30+
overflow: auto;
3031
width: var(--trigger-width);
3132
`;
3233

src/components/experimental/Select/Select.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import { fieldStyles, fieldTextStyles } from '../Field/Field';
2424

2525
const StyledPopover = styled(Popover)`
2626
box-sizing: border-box;
27+
overflow: auto;
2728
width: var(--trigger-width);
2829
`;
2930

0 commit comments

Comments
 (0)