the shift to
content-driven breakpoints is basically just moving back to how we used to design for fixed layouts, but with more flexibility. ive stopped using media queries for everything and started relying on
flex-basis
combined with
clamp()
to let the elements decide when they need to wrap. it handles those weird intermediate widths between a phone and a tablet much better than a hard breakpoint does.
the workflow change>stop designing for device types and start designing for container constraints.it saves so much time when u dont have to write a specific rule for every single new screen resolution that pops up.
container queries are the real MVP here