Skip to content

Instantly share code, notes, and snippets.

@renventura
Created April 4, 2015 23:11
Show Gist options
  • Save renventura/479f5c10e358d93a475b to your computer and use it in GitHub Desktop.
Save renventura/479f5c10e358d93a475b to your computer and use it in GitHub Desktop.
Mobile menu show/hide
@media only screen and (min-width: 961px) {
.nav-primary.nav-mobile {
display: none;
}
}
@media only screen and (max-width: 960px) {
.nav-header,
.nav-primary {
display: none;
}
.nav-primary.nav-mobile {
display: block;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment