Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In React Brand there are a few page where the content on large screens is wider than other pages. At certain breakpoints it also overlaps the navigation. This is a quirk of flexbox not collapsing content that has a width of 100% - the flex child will grow to fit the children (in this case capped at 960px due to the min-width value) and disregard the flex container calculation. min-width: auto; is allowing this blowout, so the way to fix it is to set the min-width to 0. See https://css-tricks.com/flexbox-truncated-text/#aa-the-solution-is-min-width-0-on-the-flex-child
- Loading branch information