Skip to content

Instantly share code, notes, and snippets.

@mbektimirov
Created April 4, 2014 08:09
Show Gist options
  • Save mbektimirov/9970218 to your computer and use it in GitHub Desktop.
Save mbektimirov/9970218 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.4)
// Compass (v1.0.0.alpha.18)
// ----
$module: 'TestModule';
@mixin e($element) {
.#{$module}__#{$element} {
@content;
}
}
.#{$module} {
color: red;
}
@include e(head) {
margin: 5px;
@include e(title) {
padding: 10px;
}
}
.TestModule {
color: red;
}
.TestModule__head {
margin: 5px;
}
.TestModule__head .TestModule__title {
padding: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment