We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
postcss plugins like https://github.com/postcss/postcss-color-function are not working, due to the build order, right now it's being processed by postcss like color(${ theme.color.tertiary } contrast(100%)), instead of color(#444 contrast(100%)). Could we change the build order, so https://github.com/giuseppeg/styled-jsx-postcss/blob/master/src/babel.js#L117 is run first?
color(${ theme.color.tertiary } contrast(100%))
color(#444 contrast(100%))
The text was updated successfully, but these errors were encountered:
unfortunately this is not optimal because we would need to run postcss at runtime and on the browser
Sorry, something went wrong.
No branches or pull requests
postcss plugins like https://github.com/postcss/postcss-color-function are not working, due to the build order, right now it's being processed by postcss like
color(${ theme.color.tertiary } contrast(100%))
, instead ofcolor(#444 contrast(100%))
. Could we change the build order, so https://github.com/giuseppeg/styled-jsx-postcss/blob/master/src/babel.js#L117 is run first?The text was updated successfully, but these errors were encountered: