diff --git a/src/frontend/src/components/ui/switch.tsx b/src/frontend/src/components/ui/switch.tsx index 8b89baa50c8..a4067934c01 100644 --- a/src/frontend/src/components/ui/switch.tsx +++ b/src/frontend/src/components/ui/switch.tsx @@ -1,8 +1,8 @@ "use client"; +import { cn } from "@/utils/utils"; import * as SwitchPrimitives from "@radix-ui/react-switch"; import * as React from "react"; -import { cn } from "../../utils/utils"; const Switch = React.forwardRef< React.ElementRef, @@ -10,16 +10,15 @@ const Switch = React.forwardRef< >(({ className, ...props }, ref) => ( diff --git a/src/frontend/src/style/ag-theme-shadcn.css b/src/frontend/src/style/ag-theme-shadcn.css index 1b1bd96a805..4fbed5c3dec 100644 --- a/src/frontend/src/style/ag-theme-shadcn.css +++ b/src/frontend/src/style/ag-theme-shadcn.css @@ -12,7 +12,7 @@ --ag-selected-row-background-color: hsl(var(--accent)); --ag-menu-background-color: hsl(var(--accent)); --ag-panel-background-color: hsl(var(--accent)); - --ag-row-hover-color: hsl(var(--accent)); + --ag-row-hover-color: hsl(var(--primary-foreground)); --ag-header-height: 2.5rem; }