From b2c09fc82cc1e8f6e6b053d35aafc65480aac100 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Tue, 11 Jun 2024 12:32:18 -0300 Subject: [PATCH] Removed hover bg from outline badge --- src/frontend/src/components/ui/badge.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/src/components/ui/badge.tsx b/src/frontend/src/components/ui/badge.tsx index 9b0fd8ff8..6eea7971a 100644 --- a/src/frontend/src/components/ui/badge.tsx +++ b/src/frontend/src/components/ui/badge.tsx @@ -14,7 +14,7 @@ const badgeVariants = cva( "bg-secondary hover:bg-secondary/80 border-transparent text-secondary-foreground", destructive: "bg-destructive hover:bg-destructive/80 border-transparent text-destructive-foreground", - outline: "text-primary/80 hover:bg-muted border-ring/60", + outline: "text-primary/80 border-ring/60", }, size: { sm: "h-4 text-xs", @@ -27,7 +27,7 @@ const badgeVariants = cva( defaultVariants: { variant: "default", }, - } + }, ); export interface BadgeProps