Skip to content

Commit

Permalink
fix: increased z-index for mobile settings navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
Plut0r committed Jan 4, 2024
1 parent 546d774 commit abc7ad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Settings/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function Select({ options, color, type = 'normal', selected, setSelected, handle
</span>
</Listbox.Button>
<Transition as={Fragment} leave="transition ease-in duration-100" leaveFrom="opacity-100" leaveTo="opacity-0">
<Listbox.Options className="absolute mt-1 max-h-60 w-full overflow-auto rounded-md bg-white-N0 py-1 text-base shadow-lg border border-Grey-G60 focus:outline-none sm:text-sm">
<Listbox.Options className="absolute mt-1 max-h-60 w-full overflow-auto rounded-md bg-white-N0 py-1 text-base shadow-lg border border-Grey-G60 focus:outline-none sm:text-sm z-20">
{options.map((option, personIdx) => (
<Listbox.Option
key={personIdx}
Expand Down

0 comments on commit abc7ad8

Please sign in to comment.