cssbeautify icon indicating copy to clipboard operation
cssbeautify copied to clipboard

generated extra space produces invalid CSS

Open fogshot opened this issue 8 years ago • 0 comments

I am using CSS beautify as part of this package for Sublime Text 3. I have this code in a SASS file of mine.

.subnav-list {
    &:not(:first-of-type) {
        ...
    }
}

after prettifying it becomes this, which is invalid (note the extra space before first-of-type).

.subnav-list {
    &:not(: first-of-type) {
        ...
    }
}

fogshot avatar Apr 06 '16 13:04 fogshot