From c3dbc64a58d6e274fea7523f53683850eb729c71 Mon Sep 17 00:00:00 2001 From: miloschwartz Date: Thu, 24 Apr 2025 10:42:14 -0400 Subject: [PATCH] remove hover on badge --- src/components/ui/badge.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/ui/badge.tsx b/src/components/ui/badge.tsx index 0c44fda2..f6da3aa8 100644 --- a/src/components/ui/badge.tsx +++ b/src/components/ui/badge.tsx @@ -9,11 +9,11 @@ const badgeVariants = cva( variants: { variant: { default: - "border-transparent bg-primary text-primary-foreground hover:bg-primary/80", + "border-transparent bg-primary text-primary-foreground", secondary: - "border-transparent bg-secondary text-secondary-foreground hover:bg-secondary/80", + "border-transparent bg-secondary text-secondary-foreground", destructive: - "border-transparent bg-destructive text-destructive-foreground hover:bg-destructive/80", + "border-transparent bg-destructive text-destructive-foreground", outline: "text-foreground", green: "border-transparent bg-green-300", yellow: "border-transparent bg-yellow-300",