Browse Source

form: default width="100%" (#3261)

Masen Furer 1 year ago
parent
commit
554d0d03d2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      reflex/components/radix/primitives/form.py

+ 1 - 1
reflex/components/radix/primitives/form.py

@@ -44,7 +44,7 @@ class FormRoot(FormComponent, HTMLForm):
         Returns:
         Returns:
             The style of the component.
             The style of the component.
         """
         """
-        return Style({"width": "260px"})
+        return Style({"width": "100%"})
 
 
 
 
 class FormField(FormComponent):
 class FormField(FormComponent):