ice / framework

Source code of Ice framework
https://www.iceframework.org
BSD 3-Clause "New" or "Revised" License
341 stars 45 forks source link

Filter, enhance css minify #230

Closed Yahasana closed 5 years ago

Yahasana commented 5 years ago
body {
    font-family: "Source Sans Pro", Arial, sans-serif;
}

minify: there are still spaces at the first of each lines in {} block or after : or ,

body{
 font-family: "Source Sans Pro", Arial, sans-serif;
}

Enhanced

body{
font-family:"Source Sans Pro",Arial,sans-serif;
}