Skip to content

Commit 6c2407a

Browse files
authored
fix: Dropdown overflow-auto (#463)
1 parent 6b1f8a5 commit 6c2407a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/util-elements/Modal/Modal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const Modal = React.forwardRef<HTMLDivElement, ModalProps>((props, ref) => {
7575
<div
7676
ref={mergeRefs([modalRef, ref])}
7777
className={twMerge(
78-
"absolute z-10 divide-y overflow-y-scroll",
78+
"absolute z-10 divide-y overflow-y-auto",
7979
width ? "" : "w-full",
8080
getAbsoluteSpacing(),
8181
maxHeight,

0 commit comments

Comments
 (0)