[WEB-836] fix: color picker overlapping with themes dropdown issue. (#4079)

This commit is contained in:
Prateek Shourya 2024-03-28 15:04:48 +05:30 committed by GitHub
parent f1530688f8
commit 8bdf8fa24f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -91,7 +91,7 @@ const CustomSelect = (props: ICustomSelectProps) => {
)} )}
</> </>
{isOpen && ( {isOpen && (
<Listbox.Options className="fixed z-10" onClick={() => closeDropdown()} static> <Listbox.Options className="fixed z-20" onClick={() => closeDropdown()} static>
<div <div
className={cn( className={cn(
"my-1 overflow-y-scroll rounded-md border-[0.5px] border-custom-border-300 bg-custom-background-100 px-2 py-2.5 text-xs shadow-custom-shadow-rg focus:outline-none min-w-[12rem] whitespace-nowrap", "my-1 overflow-y-scroll rounded-md border-[0.5px] border-custom-border-300 bg-custom-background-100 px-2 py-2.5 text-xs shadow-custom-shadow-rg focus:outline-none min-w-[12rem] whitespace-nowrap",