fix: allow configure modal overflow to prevent datepicker clipping (#2901)

This commit is contained in:
Areeb Sajjad
2026-02-26 06:19:18 +05:00
committed by GitHub
parent 56726448fc
commit 3599630cd7
2 changed files with 5 additions and 1 deletions

View File

@@ -277,7 +277,7 @@ const ConfigureModal = ({
onClose={onClose}
hasCloseButton
isFullscreenOnMobile
isOverflowVisible={false}
isOverflowVisible
>
<div data-testid="configure-modal">
<ModalDialog.Header className="configure-modal__header">

View File

@@ -4,6 +4,10 @@
position: static;
}
.react-datepicker-popper {
z-index: 10;
}
.w-7rem {
width: 7.2rem;
}