We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
When i use postcss-calc without prior using postcss-custom-properties, the process just hangs.
Try it like this:
var postcss = require("postcss") var calc = require("postcss-calc") var css = postcss() .use(calc()) .process('a {width: calc(var(--foo) + 10px);}') .css
If I remove the var() or first resolve it via postcss-custom-properties, it works fine
var()
The text was updated successfully, but these errors were encountered:
I'll just fix that asap (ignore in that case)
Sorry, something went wrong.
Safer evaluation for nested expressions
a81830d
Ref postcss/postcss-calc#2
483dcb5
Should be fixed in v2.0.1
If you want more information about why, please checkout referenced commits in this thread ;)
No branches or pull requests
When i use postcss-calc without prior using postcss-custom-properties, the process just hangs.
Try it like this:
If I remove the
var()
or first resolve it via postcss-custom-properties, it works fineThe text was updated successfully, but these errors were encountered: