babel-plugin-css-to-js icon indicating copy to clipboard operation
babel-plugin-css-to-js copied to clipboard

Fallback values

Open JakeCoxon opened this issue 8 years ago • 0 comments

When a CSS property is defined more than once, you want to be able to access them all.

css`display: flex; display: -webkit-flex`

Into

({ display: ['flex', '-webkit-flex'] })

JakeCoxon avatar Jul 09 '16 10:07 JakeCoxon