From 3e19121cb2fdadfc2940a08f8a0ddb89d65f56d5 Mon Sep 17 00:00:00 2001 From: Julien Froidefond Date: Mon, 27 Oct 2025 08:37:24 +0100 Subject: [PATCH] fix(FormField): ensure full-width styling for input fields --- src/components/ui/FormField.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/FormField.tsx b/src/components/ui/FormField.tsx index 366e5d3..19db28a 100644 --- a/src/components/ui/FormField.tsx +++ b/src/components/ui/FormField.tsx @@ -49,7 +49,7 @@ export const FormField = forwardRef< rows={rows} disabled={disabled} autoFocus={autoFocus} - className={`${baseClasses} text-xs text-[var(--muted-foreground)] resize-none ${className}`} + className={`${baseClasses} w-full text-xs text-[var(--muted-foreground)] resize-none ${className}`} /> ); }