jedfoster / SassMeister

The Sass playground
http://sassmeister.com
198 stars 25 forks source link

Removed double line-end at the end of @import insertion #50

Closed kamilogorek closed 11 years ago

kamilogorek commented 11 years ago

By adding double line-end one's unable to create @imports blocks without manually removing unnecessary spacing.

kamilogorek commented 11 years ago

I think that it's better to leave inserted code in form of:

@import "breakpoint";
@import "compass";
@import "compass-placeholders";

instead of:

@import "breakpoint";

@import "compass";

@import "compass-placeholders";

This will allow us to make imports block at the beginning of a document with ease.