Skip to content

Instantly share code, notes, and snippets.

@Seanmclem
Last active June 11, 2018 00:53
Show Gist options
  • Save Seanmclem/de569f22cbdaab98d6f650d143623880 to your computer and use it in GitHub Desktop.
Save Seanmclem/de569f22cbdaab98d6f650d143623880 to your computer and use it in GitHub Desktop.
@media only screen and (min-width: 551px) {
/* desktop */
.mobile-menu{
display:none;
}
.mobile{
display:none;
}
}
@media only screen and (max-width: 550px) {
/* phones */
.desktop{
display:none;
}
}
.mobile-menu{
&.closed{
display:none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment