chore: fix plaintext icon color on hover in selection dropdown

This commit is contained in:
Aman Harwara
2023-12-12 19:04:44 +05:30
parent 5231b3ce90
commit 337c6532d1
2 changed files with 11 additions and 2 deletions

View File

@@ -84,7 +84,7 @@ const Dropdown = ({
>
{items.map((item) => (
<SelectItem
className="flex cursor-pointer items-center bg-transparent px-3 py-1.5 text-sm text-text hover:bg-contrast hover:text-foreground [&[data-active-item]]:bg-info [&[data-active-item]]:text-info-contrast"
className="group flex cursor-pointer items-center bg-transparent px-3 py-1.5 text-sm text-text hover:bg-contrast hover:text-foreground [&[data-active-item]]:bg-info [&[data-active-item]]:text-info-contrast"
key={item.value}
value={item.value}
disabled={item.disabled}