From bd3740a913493fafcf57224d7a651182008c2f9d Mon Sep 17 00:00:00 2001 From: BrunoQuaresma Date: Wed, 15 Jan 2025 10:50:46 +0000 Subject: [PATCH] fix: set min width as 80px for buttons --- site/src/components/Button/Button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/components/Button/Button.tsx b/site/src/components/Button/Button.tsx index a519ce22cc846..bc25b0c077017 100644 --- a/site/src/components/Button/Button.tsx +++ b/site/src/components/Button/Button.tsx @@ -9,7 +9,7 @@ import { cn } from "utils/cn"; export const buttonVariants = cva( `inline-flex items-center justify-center gap-1 whitespace-nowrap - border-solid rounded-md transition-colors + border-solid rounded-md transition-colors min-w-20 text-sm font-semibold font-medium cursor-pointer no-underline focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-content-link disabled:pointer-events-none disabled:text-content-disabled