Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/common/Dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default function Dropdown({

{isOpen && (
<div
className={`absolute right-0 left-0 mt-8 flex cursor-pointer flex-col rounded-md border border-gray-20 bg-white text-black shadow-custom2 ${variant === 'form' ? 'h-230 w-full overflow-y-auto' : 'h-160 w-105 justify-center py-12'}`}
className={`absolute right-0 left-0 z-30 mt-8 flex cursor-pointer flex-col rounded-md border border-gray-20 bg-white text-black shadow-custom2 ${variant === 'form' ? 'h-230 w-full overflow-y-auto' : 'h-160 w-105 justify-center py-12'}`}
>
<ul
className={`${variant === 'form' ? '' : 'flex h-136 flex-col gap-8'}`}
Expand Down