Skip to content

Instantly share code, notes, and snippets.

@yoanmalie
Forked from vincent-valentin/SassMeister-input.scss
Last active March 31, 2018 11:40
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 yoanmalie/5646a34165832c91ad79be63049be2ef to your computer and use it in GitHub Desktop.
Save yoanmalie/5646a34165832c91ad79be63049be2ef to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.21)
// Compass (v1.0.3)
// ----
@mixin tag($elt) {
@at-root #{$elt}#{&} {
@content;
}
}
.foo {
@include tag(fum) {
bar: baz;
}
}
.media {
background-color: lightgray;
@include tag(form) {
border: 1px solid;
}
}
fum.foo {
bar: baz;
}
.media {
background-color: lightgray;
}
form.media {
border: 1px solid;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment