dnomak / flexiblegs-scss-plus

Flexible Grid System Scss Plus
https://dnomak.com/flexiblegs/install/scss-plus/
MIT License
1.35k stars 131 forks source link

Easier to read version? #5

Closed mindctrl closed 9 years ago

mindctrl commented 10 years ago

flexible.css has lines that are over 7000 columns wide. It would be nice to have it formatted so it's easy to read.

Instead of this: .xs-18-9,.xs-20-10,.xs-24-12{width:50%;}.xs-3-1,.xs-6-2,.xs-12-4,.xs-15-5,.xs-21-7,.xs-24-8{width:33.333333333333336%;}

Something like this:

.xs-20-10,
.xs-24-12 {
  width:50%;
}

.xs-3-1,
.xs-6-2,
.xs-12-4,
.xs-15-5,
.xs-21-7,
.xs-24-8 {
  width:33.333333333333336%;
}
dnomak commented 9 years ago

thanks @mindctrl