Skip to content

Commit 143c1f1

Browse files
committed
chore: overflow hidden fix in date seect
1 parent d1f5f71 commit 143c1f1

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/Shared/Components/DatePicker/DateTimePicker.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,9 @@ const DateTimePicker = ({
110110
onChange={handleTimeChange}
111111
data-testid={dataTestIdForTime}
112112
menuSize={ComponentSizeType.xs}
113-
menuPosition="absolute"
113+
menuPosition="fixed"
114114
size={ComponentSizeType.large}
115+
shouldMenuAlignRight
115116
/>
116117
</div>
117118
)}

src/Shared/Components/SelectPicker/utils.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ const getVariantOverrides = <OptionValue>(
5353
border: 'none',
5454
padding: 0,
5555
gap: '2px',
56+
overflow: 'hidden !important',
5657
}),
5758
singleValue: () => ({
5859
fontWeight: 600,

0 commit comments

Comments
 (0)