From 7bcb1c412c6d34a43f382fdd321e9ebf946dc647 Mon Sep 17 00:00:00 2001 From: 0xKurt Date: Tue, 29 Oct 2024 13:15:17 +0100 Subject: [PATCH] update outlined-secondary text color --- src/ui-shadcn/button.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui-shadcn/button.tsx b/src/ui-shadcn/button.tsx index a157809..cbeec54 100644 --- a/src/ui-shadcn/button.tsx +++ b/src/ui-shadcn/button.tsx @@ -46,7 +46,7 @@ const buttonVariants = tv({ "outlined-error": "border-2 border-orange-600 bg-orange-50 text-orange-600", "outlined-success": "border-2 border-moss-300 bg-moss-50 text-moss-300", "outlined-primary": "border-2 border-brand bg-white text-brand", - "outlined-secondary": "border-2 border-neutral-600 bg-white text-neutral-600", + "outlined-secondary": "border-2 border-neutral-600 bg-white text-black", disabled: "border-neutral-100 bg-neutral-100 text-neutral-600", "outlined-disabled": "border-2 border-neutral-600 bg-white text-neutral-600", }, @@ -54,7 +54,7 @@ const buttonVariants = tv({ sm: "h-[24px] px-[8px] py-[6px]", md: "h-[32px] px-[12px] py-[8px]", lg: "h-[40px] px-[16px] py-[10px]", - icon: "h-[32px] w-[32px] p-0", + icon: "size-32 p-0", default: "h-[32px] px-[12px] py-[8px]", }, },