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
🤖 Add min-w-0 to flex items to allow proper shrinking
Added min-w-0 to all flex container and items to override the default
min-width:auto behavior that prevents flex items from shrinking below
their content size.
Without min-w-0:
- Flex items have min-width: auto (content-based minimum)
- Items can't shrink below their content width
- flex-wrap doesn't trigger because items won't compress
With min-w-0:
- Flex items can shrink below content size
- Wrapping triggers when container width is constrained
- Items properly respond to viewport constraints
0 commit comments