ben-eb / perfectionist

Beautify CSS files.
MIT License
229 stars 14 forks source link

Format brackets "()" and at rule spaces #19

Open yisibl opened 8 years ago

yisibl commented 8 years ago

Input:

@media         screen       and      (       min-width:        30.2em       ) {
  .foo {
    color: rgba(   90,200,12,.5   );
  }
}
@media screen and(min-width:30.2em){
}

Output:

@media screen and (min-width: 30.2em) {
  .foo {
    color: rgba(90, 200, 12, .5);
  }
}

@media screen and (min-width: 30.2em) {
}