Skip to content

Instantly share code, notes, and snippets.

@halfzebra
Last active August 29, 2015 14:22
Show Gist options
  • Save halfzebra/d8b8cfa33d882a949262 to your computer and use it in GitHub Desktop.
Save halfzebra/d8b8cfa33d882a949262 to your computer and use it in GitHub Desktop.
SCSS Namespaces
$namespase: 'text';
.#{$namespase} {
display: inline;
&-red {
color: red;
}
&-bold {
font-weight: bold;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment