Skip to content

Instantly share code, notes, and snippets.

@andymcfee
Created June 1, 2016 08:23
Show Gist options
  • Select an option

  • Save andymcfee/19a2c33fe9e424845a265242f711134e to your computer and use it in GitHub Desktop.

Select an option

Save andymcfee/19a2c33fe9e424845a265242f711134e to your computer and use it in GitHub Desktop.
My guidelines for writing Sass

Don't BEM nest.

.button {
  &--modifier {
    ...
  }
}

It becomes very difficult to do a global search for the class .button--modifier. Nesting pseudo-classes is fine (&:hover)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment