fix(FormField): ensure full-width styling for input fields

This commit is contained in:
Julien Froidefond
2025-10-27 08:37:24 +01:00
parent fd46ed180f
commit 3e19121cb2

View File

@@ -49,7 +49,7 @@ export const FormField = forwardRef<
rows={rows} rows={rows}
disabled={disabled} disabled={disabled}
autoFocus={autoFocus} 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}`}
/> />
); );
} }