Jonathan Ginn
Results
2
issues of
Jonathan Ginn
I have the plugin set to 'expanded' mode. ``` .class { // Not active, not open - use black down arrow @include pseudo-element(); @include retina-sprite(nav-arrow-down-black); @include centre-sprite(nav-arrow-down-black); } ``` Becomes:...
The expanded option turns an [interpolated variable rule](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#interpolation_) into new lines, presumably because it uses { & } brackets. For example: ``` &.pt_#{$type} ``` Becomes: ``` &.pt_# { $type }...