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

This commit is contained in:
Masen Furer 2024-05-09 13:11:54 -07:00 committed by GitHub
parent 6fb254ae3d
commit 554d0d03d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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