From c208b460aac3ed7c8e6d34e22d0304790626bcce Mon Sep 17 00:00:00 2001 From: Luke Vella Date: Fri, 24 Nov 2023 22:06:36 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Improve=20button=20styling?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/ui/button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/button.tsx b/packages/ui/button.tsx index 7ef099721..159763fc5 100644 --- a/packages/ui/button.tsx +++ b/packages/ui/button.tsx @@ -16,7 +16,7 @@ const buttonVariants = cva( destructive: "bg-destructive text-destructive-foreground active:bg-destructive hover:bg-destructive/90", default: - "rounded-md px-3.5 py-2.5 data-[state=open]:shadow-none hover:border-gray-100 data-[state=open]:bg-gray-100 active:bg-gray-100 hover:bg-white/50 bg-gray-50", + "rounded-md px-3.5 py-2.5 data-[state=open]:shadow-none data-[state=open]:bg-gray-100 active:bg-gray-200 hover:bg-gray-100 bg-gray-50", secondary: "bg-secondary text-secondary-foreground hover:bg-secondary/80", ghost: "border-transparent hover:bg-gray-200 active:bg-gray-300",