/// Set special styles for IE10 and above
///
/// @example scss -
///   .foo {
///     @include ie-hack() {
///     }
///   }

@mixin ie-hack() {
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    @content;
  }
}