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
So I use a fair bit of CSS functions in my CSS, mainly calc(), and this plugin breaks it. For example, this is one of my rules:
calc()
width: calc(100% - 2em - 100px);
After it goes through the plugin, it ends up like this:
width: calc(-2%);
The text was updated successfully, but these errors were encountered:
It's not the plugin, but the Less compiler itself. See --strict-math option (and less/less.js#974 for more tips).
--strict-math
Sorry, something went wrong.
Closing as not plugin issue (and expected behaviour after all).
No branches or pull requests
So I use a fair bit of CSS functions in my CSS, mainly
calc()
, and this plugin breaks it. For example, this is one of my rules:After it goes through the plugin, it ends up like this:
The text was updated successfully, but these errors were encountered: