This would be good to have
Expected Behavior
It should resolve as
.main-container {
padding: 0.5rem;
}
Actual Behavior
.main-container {
padding: 1rem/2;
}

Steps to Reproduce the Problem
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);
}
Versions
esbuild: 0.19.1
esbuild-plugin-less: 1.2.4
- Platform: node18
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.4