Skip to content

Instantly share code, notes, and snippets.

@matthewbeta
Created January 16, 2015 16:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthewbeta/0ee7b9a8bbbac4540c3c to your computer and use it in GitHub Desktop.
Save matthewbeta/0ee7b9a8bbbac4540c3c to your computer and use it in GitHub Desktop.
/* This */
.my-module {
background: #DDD;
&-header {
padding: 10px;
}
&-link {
color: red;
}
}
/* compiles to */
.my-module {
background: #DDD;
}
.my-module-header {
padding: 10px;
}
.my-module-link {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment