Skip to content

Instantly share code, notes, and snippets.

@callum
Created May 29, 2015 11:16
Show Gist options
  • Save callum/405222ad9732f8b362e7 to your computer and use it in GitHub Desktop.
Save callum/405222ad9732f8b362e7 to your computer and use it in GitHub Desktop.
// no
.sign-in--new-user {
.sign-in__submit {}
// N more rules
}
// yes
.sign-in__submit {
background-color: blue;
.sign-in--new-user & {
background-color: green;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment