From 1a0733094d405c8efacfd8e7172fa7c83710761f Mon Sep 17 00:00:00 2001 From: Jakub Neumann Date: Fri, 3 May 2024 09:33:30 +0200 Subject: [PATCH] feat(playground): better styling for secondary button variant --- packages/playground/admin/lib/components/ui/button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/playground/admin/lib/components/ui/button.tsx b/packages/playground/admin/lib/components/ui/button.tsx index ebb233aa2..aae340a38 100644 --- a/packages/playground/admin/lib/components/ui/button.tsx +++ b/packages/playground/admin/lib/components/ui/button.tsx @@ -7,7 +7,7 @@ export const buttonConfig = uiconfig({ default: 'bg-primary text-primary-foreground shadow hover:bg-primary/90', destructive: 'bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90', outline: 'border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground', - secondary: 'bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80', + secondary: 'bg-secondary border border-input text-secondary-foreground shadow-sm hover:bg-secondary/80', ghost: 'hover:bg-accent hover:text-accent-foreground', link: 'text-primary underline-offset-4 hover:underline', },