Skip to content

Instantly share code, notes, and snippets.

@illepic
Created May 30, 2014 00:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save illepic/79c8843b207066b5f9de to your computer and use it in GitHub Desktop.
Save illepic/79c8843b207066b5f9de to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.7)
// Compass (v1.0.0.alpha.18)
// ----
@mixin estee-extender($extendable, $mq:false) {
@if $mq {
@extend %#{$extendable}-#{$mq};
} @else {
@extend %#{$extendable};
}
}
%hidden {
display: red;
&-medium-up {
display: blue;
}
}
.thingy {
color: pink;
@include estee-extender("hidden", $mq:"medium-up");
}
.thingy {
display: blue;
}
.thingy {
color: pink;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment