Skip to content

Commit b49fe3d

Browse files
authored
🐛 fix custom select (#415)
1 parent 0558fd4 commit b49fe3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/atoms/CustomSelect/CustomSelect.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const CustomSelect = ({
5555
} duration-500`}
5656
>
5757
{!readOnly && opened && (
58-
<div className="flex w-full flex-col bg-light-light dark:bg-dark-light overflow-y-scroll max-h-96 mt-1 rounded-lg border border-solid border-light-dark dark:border-dark-graybutton">
58+
<div className="flex w-full flex-col z-10 bg-light-light dark:bg-dark-light overflow-y-scroll max-h-96 mt-1 rounded-lg border border-solid border-light-dark dark:border-dark-graybutton">
5959
{choices.map((choice) => (
6060
<span
6161
key={keyFn(choice)}

0 commit comments

Comments
 (0)