From bfc66148ea1e030b1f33253d4cf6eba60cd9b2c3 Mon Sep 17 00:00:00 2001 From: Elia Maino Date: Thu, 20 Apr 2023 07:34:32 +0200 Subject: [PATCH] fix(badge): update destructive bg color on hover (#189) --- apps/www/components/ui/badge.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/www/components/ui/badge.tsx b/apps/www/components/ui/badge.tsx index 65544508a7..bb37dc8261 100644 --- a/apps/www/components/ui/badge.tsx +++ b/apps/www/components/ui/badge.tsx @@ -13,7 +13,7 @@ const badgeVariants = cva( secondary: "bg-secondary hover:bg-secondary/80 border-transparent text-secondary-foreground", destructive: - "bg-destructive hover:bg-secondary/80 border-transparent text-destructive-foreground", + "bg-destructive hover:bg-destructive/80 border-transparent text-destructive-foreground", outline: "text-foreground", }, },