You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The select component's width is determined by the max width of its options, as per browser behavior. However, the select box does not specify a min-width, which means that selects with no options, or options with a few characters of text do not appear well.
This is particularly common in JS frameworks that might load the options array lazily.
Alternatives
We are enforcing a min-width of 5 characters to mitigate for such cases.
The text was updated successfully, but these errors were encountered:
Related component
Select
Context
The select component's width is determined by the max width of its options, as per browser behavior. However, the select box does not specify a min-width, which means that selects with no options, or options with a few characters of text do not appear well.
This is particularly common in JS frameworks that might load the options array lazily.
Alternatives
We are enforcing a min-width of 5 characters to mitigate for such cases.
The text was updated successfully, but these errors were encountered: