Created
October 26, 2018 21:02
-
-
Save janzikmund/0c6e2c59cfd6c240e9bd3fc3e6d47b73 to your computer and use it in GitHub Desktop.
ie11.scss
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
/** | |
* IE 10, 11 fixes | |
*/ | |
// general fixes | |
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |
} | |
// bound with media queries | |
@media all and (-ms-high-contrast: none) and (min-height: 790px), (-ms-high-contrast: active) and (min-height: 790px) { | |
// stretch container to full height | |
#container { height: 100vh; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment