Skip to content

Instantly share code, notes, and snippets.

@EvanLovely
Forked from illepic/SassMeister-input.scss
Created May 30, 2014 00:27
Show Gist options
  • Save EvanLovely/c1f0917100beda04ee90 to your computer and use it in GitHub Desktop.
Save EvanLovely/c1f0917100beda04ee90 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 {
@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