Skip to content

Commit 6032e11

Browse files
committed
Added hover effect in dark mode for get suggestions button
1 parent 6b11290 commit 6032e11

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

app/next-client-app/components/recommendations/ai-suggesions-button.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
DropdownMenuContent,
1313
DropdownMenuLabel,
1414
DropdownMenuSeparator,
15-
DropdownMenuTrigger,
15+
DropdownMenuTrigger
1616
} from "@/components/ui/dropdown-menu";
1717
import { domains } from "@/constants/domains";
1818
import { DropdownMenuItem } from "@radix-ui/react-dropdown-menu";
@@ -21,7 +21,7 @@ export function AISuggestionsButton({
2121
value,
2222
tableId,
2323
rowId,
24-
contentType,
24+
contentType
2525
}: {
2626
value: string;
2727
tableId: string;
@@ -92,7 +92,7 @@ export function AISuggestionsButton({
9292
<Button
9393
variant="outline"
9494
size="sm"
95-
className="gap-2 border-purple-400 hover:bg-purple-100 hover:text-black"
95+
className="gap-2 border-purple-400 hover:bg-purple-100 hover:text-black dark:hover:bg-gray-700 dark:hover:text-white"
9696
disabled={isLoading}
9797
>
9898
{isLoading ? (
@@ -108,7 +108,7 @@ export function AISuggestionsButton({
108108
align="start"
109109
className="w-52 overflow-y-auto max-h-96"
110110
>
111-
<DropdownMenuLabel className="text-black font-semibold text-center">
111+
<DropdownMenuLabel className="text-black dark:text-white font-semibold text-center">
112112
Select Relevant Domain
113113
</DropdownMenuLabel>
114114
<DropdownMenuSeparator />

0 commit comments

Comments
 (0)