Skip to content

Instantly share code, notes, and snippets.

@jwlms
Created July 15, 2013 23:51
Show Gist options
  • Save jwlms/6004574 to your computer and use it in GitHub Desktop.
Save jwlms/6004574 to your computer and use it in GitHub Desktop.
don't nest too deep
.menu-toggle { ... // ok
.menu-toggle {
ul {
... // ok
}
}
.menu-toggle {
ul {
li {
... // ok
}
}
}
.menu-toggle {
ul {
li {
a {
... // maybe no - your call. definitely no more though
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment