Skip to content

Instantly share code, notes, and snippets.

@jamiebuilds
Created January 12, 2014 20:34
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 jamiebuilds/8390214 to your computer and use it in GitHub Desktop.
Save jamiebuilds/8390214 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.2)
// Compass (v1.0.0.alpha.17)
// ----
@function describe($name) {
@return $name;
}
@mixin describe($name) {
#{$name} {
@content;
}
}
#{describe('a test')} {
foo: bar;
}
@include describe('a test') {
foo: bar;
}
a test {
foo: bar;
}
a test {
foo: bar;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment