Forked from vortizhe/gist:77ac712a4d1baecdd0def29cd348c7dc
Created
September 20, 2017 10:57
-
-
Save carloscabo/93a7903eeadf5416f2207516baa469d1 to your computer and use it in GitHub Desktop.
Sass mixing for IE10-11
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
@mixin ie() { | |
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { | |
@content; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment