UNPKG

@navinc/base-react-components

Version:
17 lines 424 B
import { css } from 'styled-components'; export const moz = (...args) => css ` @-moz-document url-prefix() { ${css(...args)}; } `; export const ie = (...args) => css ` @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { ${css(...args)}; } `; export const edge = (...args) => css ` @supports (-ms-accelerator: true) { ${css(...args)}; } `; //# sourceMappingURL=target-vendor.js.map