tj / styl

Flexible and fast modular CSS preprocessor built on top of Rework
530 stars 21 forks source link

Leading withspace in a styl produces a leading ; in the generated css #30

Open thomas-rager opened 10 years ago

thomas-rager commented 10 years ago

Accidentally I produced a file with only one spacer in the first line, this leads to a ; in the generated css. The example doesn't show it because github strips the source-code... please add a spacer and a break before the button to test it.

button 
  background-color: green
  width: 150px
  height: 150px
;

button {
  background-color: green;
  width: 150px;
  height: 150px;
}