Skip to content

Instantly share code, notes, and snippets.

@palnes
Created March 27, 2014 10:37
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 palnes/9804685 to your computer and use it in GitHub Desktop.
Save palnes/9804685 to your computer and use it in GitHub Desktop.
.speech-bubble{
color: purple;
&__header{
color: orange;
}
&__text{
color: black;
&--link{
color: green;
}
}
}
// becomes
.speech-bubble{
color: purple;
}
.speech-bubble__header{
color: orange;
}
.speech-bubble__text{
color: black;
}
.speech-bubble__text--link{
color: green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment