mixin for ie 10+ only

This commit is contained in:
Andrew Croce 2018-09-12 09:41:51 -04:00 committed by luisgov
parent 59761800df
commit d409160170

View File

@ -35,3 +35,10 @@
[v-cloak] {
display: none
}
@mixin ie-only {
// Applies to IE 10+
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
@content;
}
}