Skip to content

Instantly share code, notes, and snippets.

@mciastek
Last active August 27, 2017 18:47
Show Gist options
  • Select an option

  • Save mciastek/551f6ff7a8eac5b699eb7f69100ebd9e to your computer and use it in GitHub Desktop.

Select an option

Save mciastek/551f6ff7a8eac5b699eb7f69100ebd9e to your computer and use it in GitHub Desktop.
// Bad
.menu {
li {
display: inline-block;
padding: 0 20px;
border-bottom: 1px solid $accent;
}
ul li {
padding: 0 10px;
border-bottom: 0; // Unnecessary border reset
}
}
// Good
.menu-item {
display: inline-block;
padding: 0 20px;
border-bottom: 1px solid $accent;
}
.nested-menu-item {
padding: 0 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment