Open
Description
Describe the bug
Minifier replaces
border: none 1px #c5c5c5;
with
border:0 1px #c5c5c5;
which does not work in Chrome
To Reproduce
Steps to reproduce the behavior:
- Create a less file with a class that has border: none 1px #c5c5c5;
- Compile
- Observe it being translated to border:0 1px #c5c5c5;
- To see it in chrome, apply the class to an element and inspect the element (see attachment)
Expected behavior
expect
border:none 1px #c5c5c5;
Screenshots
If you hover over the yellow triangle, the tooltip is "Invalid property value".
Additional context
The whole rule does not get applied, which breaks the layout. So the problem is not just the error icon.