Closed rafaelrinaldi closed 8 years ago
@chrisjames-work raised a very interesting and tricky scenario which are media queries. How to isolate a pattern that has multiple media query rules (and still make sense)?
.container { width: 100%; padding: 3rem; @media (min-width: 800px) { width: 50%; } } .full-width { width: 100%; @media (min-width: 800px) { width: 90%; } }
Closing because #2
@chrisjames-work raised a very interesting and tricky scenario which are media queries. How to isolate a pattern that has multiple media query rules (and still make sense)?