Last active
August 27, 2017 18:47
-
-
Save mciastek/551f6ff7a8eac5b699eb7f69100ebd9e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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