oyejorge / less.php

less.js ported to PHP.
http://lessphp.typesettercms.com
Apache License 2.0
657 stars 2 forks source link

Minified/Compressed output bug #348

Open AlexNodex opened 7 years ago

AlexNodex commented 7 years ago

Hi.

Great project :)

When outputting using compress=>true there is a slight whitespace bug

The compiler adds a space between declaration and value like so:

.foo{color: #fff}

It should be (as it is in your SCSS library):

.foo{color:#fff}

Keep up the good work 👍