Skip to content

Commit

Permalink
🐛 fix custom select (#415)
Browse files Browse the repository at this point in the history
  • Loading branch information
MailyLehoux authored Dec 14, 2022
1 parent 0558fd4 commit b49fe3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/atoms/CustomSelect/CustomSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const CustomSelect = ({
} duration-500`}
>
{!readOnly && opened && (
<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">
<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">
{choices.map((choice) => (
<span
key={keyFn(choice)}
Expand Down

0 comments on commit b49fe3d

Please sign in to comment.