Flex-shrink Solution
This lesson contains the solution to the exercise in the previous lesson.
We'll cover the following...
Using flex-basis instead of min-width
We only need to make a change in line 8 of the CSS code:
.item {
flex-basis: 100px; /* Change
...