Created
April 15, 2020 21:28
-
-
Save ricealexander/6dad0e7a79ff9942e36504b01e5f2c4a to your computer and use it in GitHub Desktop.
IE-11 Specific Media Query Mixin for SCSS
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 when-internet-explorer { | |
| @media (-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