From a9c5ada45ff4908efb3cf52d3bc1ee2f1dfe3aa1 Mon Sep 17 00:00:00 2001 From: igorrCarvalho Date: Tue, 28 Nov 2023 18:32:50 -0300 Subject: [PATCH] Refactor: make not selected header button brighter --- src/frontend/src/components/ui/button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/components/ui/button.tsx b/src/frontend/src/components/ui/button.tsx index 031e7527c..929c8cfae 100644 --- a/src/frontend/src/components/ui/button.tsx +++ b/src/frontend/src/components/ui/button.tsx @@ -16,7 +16,7 @@ const buttonVariants = cva( primary: "border bg-background text-secondary-foreground hover:bg-background/80 dark:hover:bg-background/10 hover:shadow-sm", secondary: - "border border-muted bg-muted text-secondary-foreground hover:bg-secondary/80", + "border border-muted bg-muted text-muted-foreground hover:bg-secondary/80", ghost: "hover:bg-accent hover:text-accent-foreground", link: "underline-offset-4 hover:underline text-primary", },