From the Shadows Style guide:
Is max an option?
The specific task: I need to on show the hamburger menu in the smaller media only. IOW, primary-navigation needs to be hidden on all desktop or larger size screens.
Scott
Code:
@media screen and (min-width: 90em) {
Code:
@media screen and (max-width: 90em) {
Scott
Comment