From b5e35aa905173f39a2f5a0bc8f6de4920da393bb Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 12 Jul 2024 18:31:48 +0900 Subject: [PATCH] fix(dialog/DialogFooter): add w-full on base --- packages/react/components/Dialog/Component.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react/components/Dialog/Component.tsx b/packages/react/components/Dialog/Component.tsx index 890a168..3e8369b 100644 --- a/packages/react/components/Dialog/Component.tsx +++ b/packages/react/components/Dialog/Component.tsx @@ -334,7 +334,7 @@ DialogSubtitle.displayName = "DialogSubtitle"; */ const [dialogFooterVariant, resolveDialogFooterVariant] = vcn({ - base: "flex flex-col items-end sm:flex-row sm:items-center sm:justify-end", + base: "flex w-full flex-col items-end sm:flex-row sm:items-center sm:justify-end", variants: { gap: { sm: "gap-2",