Created
May 30, 2014 00:23
-
-
Save illepic/79c8843b207066b5f9de to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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"); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.thingy { | |
display: blue; | |
} | |
.thingy { | |
color: pink; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment