Created
July 21, 2015 13:08
-
-
Save fubhy/8a8217cca6d6bad810fa to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
$rendering-for-ie: true !default; | |
@mixin media($media-query, $render-for-ie: true) { | |
@if $rendering-for-ie == false { | |
@media (#{$media-query}) { | |
@content; | |
} | |
} | |
@else if $render-for-ie == true and $rendering-for-ie == true { | |
@content; | |
} | |
} | |
@include media('min-width: 500px', false) { | |
.foo { | |
color: black; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment