Change indentation in Sass
sass-3.2.3/lib/sass/tree/visitors/to_css.rb
has a number of hard-coded double-space strings (' '
) that are used for indentation. If you replace them all with four-space strings it will compile your css as you stated.
sass-3.2.3/lib/sass/tree/visitors/to_css.rb
has a number of hard-coded double-space strings (' '
) that are used for indentation. If you replace them all with four-space strings it will compile your css as you stated.