diff --git a/apps/dashboard/src/components/ui/dropdown-menu.tsx b/apps/dashboard/src/components/ui/dropdown-menu.tsx index b200fed73..062b91ad8 100644 --- a/apps/dashboard/src/components/ui/dropdown-menu.tsx +++ b/apps/dashboard/src/components/ui/dropdown-menu.tsx @@ -10,6 +10,9 @@ import { throwErr } from "@stackframe/stack-shared/dist/utils/errors"; import { runAsynchronouslyWithAlert } from "@stackframe/stack-shared/dist/utils/promises"; import { Spinner } from "./spinner"; +const dropdownMenuItemHighlightClasses = + "rounded-lg transition-colors duration-150 hover:transition-none focus:bg-zinc-100 dark:focus:bg-accent dark:focus:text-accent-foreground data-[highlighted]:bg-zinc-100 dark:data-[highlighted]:bg-accent dark:data-[highlighted]:text-accent-foreground"; + const DropdownMenuContext = React.createContext<{ open: boolean, setOpen: (open: boolean) => void, @@ -61,7 +64,9 @@ const DropdownMenuSubTrigger = forwardRefIfNeeded< (({ className, ...props }, ref) => ( diff --git a/apps/dashboard/src/components/ui/tabs.tsx b/apps/dashboard/src/components/ui/tabs.tsx index 0bc7df5a5..b5ec453fc 100644 --- a/apps/dashboard/src/components/ui/tabs.tsx +++ b/apps/dashboard/src/components/ui/tabs.tsx @@ -15,7 +15,7 @@ const TabsList = forwardRefIfNeeded<