Skip to content

Instantly share code, notes, and snippets.

@EvanLovely
Forked from illepic/SassMeister-input.scss
Created May 30, 2014 00:24
Show Gist options
  • Save EvanLovely/827fd64e74a4cf0e7f2b to your computer and use it in GitHub Desktop.
Save EvanLovely/827fd64e74a4cf0e7f2b to your computer and use it in GitHub Desktop.
// ----
// Sass (v3.3.7)
// Compass (v1.0.0.alpha.18)
// ----
@mixin estee-extender($extendable, $mq:false) {
@if $mq {
background: green;
} @else {
@extend %#{$extendable};
}
}
%hidden {
display: red;
&-medium-up {
display: blue;
}
}
.thingy {
@include estee-extender("hidden", $mq:true);
}
.thingy {
background: green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment