Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 925 Bytes

sass.md

File metadata and controls

39 lines (28 loc) · 925 Bytes

Sass API

Mark Description
Public functions, mixins, placeholders, and variables
Private items - not supported outside package's build
⚠️ Deprecated items - may not be available in future releases

@carbon/icons

✅carbon--icons [mixin]

Makes SVGs accessible in high contrast mode

Source code
@mixin carbon--icons() {
  @media screen and (-ms-high-contrast: active) {
    svg {
      fill: ButtonText;
    }
  }
}