Replies: 2 comments
-
You'd have to implement it here: https://github.com/thysultan/stylis/blob/a2fdca83a2377230a66f8d9c5d477bc87c10c188/src/Prefixer.js |
Beta Was this translation helpful? Give feedback.
0 replies
-
@Andarist would you mind sharing details on how to use the prefixer? I am working on enabling support for Webview with Chrome 52. It doesn't support quite a bit of options of flexbox. Maybe there is another way that I can also use. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm wanting to know how I can use a style like
align-items: end;
and have it transpiled toalign-items: flex-end;
to support older versions of Safari for instance. I've read that because emotion works at run time we can't use a tool like postCSS, which is a build tool, to transpile unsupported css styles in older browsers.I'm also using the styled component syntax from emotion, and so expecting to be able to write my component styles like so...
To output like this...
And just to mention, I am using Gatsby.js so perhaps there's a Gatsby plugin for what I'm looking for instead?
Beta Was this translation helpful? Give feedback.
All reactions