Skip to content

Instantly share code, notes, and snippets.

@rsboarder
Created September 4, 2015 16:42
Show Gist options
  • Save rsboarder/ccb2831b47f5a1e8d809 to your computer and use it in GitHub Desktop.
Save rsboarder/ccb2831b47f5a1e8d809 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
@mixin block {
color: red;
&--black {
color: black;
}
}
.foo {
@include block();
}
.bar {
@include block();
}
.foo {
color: red;
}
.foo--black {
color: black;
}
.bar {
color: red;
}
.bar--black {
color: black;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment