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
I use font sizing with the golden ratio multipliers for convenience. It's a pure function and I'd like to reduce it like the calc function is.
This:
font-size: calc(1rem * pow(1.618, 3));
shall turn into this:
font-size: 4.235801032rem;
Obviously rounding should apply like it does for everything else
?
I tried to do it and apparently it's not supported, but maybe its simply the nuxt config as I have never used postcss-calc outside of nuxt
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What should be improved?
I use font sizing with the golden ratio multipliers for convenience. It's a pure function and I'd like to reduce it like the calc function is.
Describe the solution you would like
This:
shall turn into this:
Obviously rounding should apply like it does for everything else
Possible alternatives
?
Additional context
I tried to do it and apparently it's not supported, but maybe its simply the nuxt config as I have never used postcss-calc outside of nuxt
Are you willing to work on this?
The text was updated successfully, but these errors were encountered: