UNPKG

324 BSCSSView Raw
1@mixin high-contrast {
2 @media screen and (-ms-high-contrast: active) {
3 @content;
4 }
5}
6
7@mixin high-contrast-black-on-white {
8 @media screen and (-ms-high-contrast: black-on-white) {
9 @content;
10 }
11}
12
13@mixin high-contrast-white-on-black {
14 @media screen and (-ms-high-contrast: white-on-black) {
15 @content;
16 }
17}
\No newline at end of file