matype / stylefmt

stylefmt is a tool that automatically formats stylesheets.
Other
2.1k stars 89 forks source link

Trim spaces from IE hacks #71

Closed kristerkari closed 8 years ago

kristerkari commented 8 years ago

This change fixes a bug where indentation would not be correct because spaces where not trimmed from IE hacks (e.g. *zoom: 1;).

@mixin clearfix {
    *zoom: 1;

  &:before,
  &:after {
    display: table;
    content: "";
  }

  &:after {
    clear: both;
  }
}
matype commented 8 years ago

:+1: