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
This would be good to have
It should resolve as
.main-container { padding: 0.5rem; }
.main-container { padding: 1rem/2; }
When I write any kind of computational css like below sample
@padding: 1rem .main-container { padding: @padding/2; }
Though wrapping the statement within ( ) does fix it
(
)
Works like this
@padding: 1rem .main-container { padding: (@padding/2); }
esbuild
esbuild-plugin-less
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This would be good to have
Expected Behavior
It should resolve as
Actual Behavior
.main-container {
padding: 1rem/2;}
Steps to Reproduce the Problem
When I write any kind of computational css like below sample
Though wrapping the statement within
(
)
does fix itWorks like this
Versions
esbuild
: 0.19.1esbuild-plugin-less
: 1.2.4The text was updated successfully, but these errors were encountered: