mutian / Sublime-CSS-Format

CSS Formatting for Sublime Text
http://mutian.github.io/Sublime-CSS-Format/
MIT License
98 stars 27 forks source link

Extra linebreak on Nested SCSS when using Expanded Break Selector #44

Open htc001120 opened 8 years ago

htc001120 commented 8 years ago
a {
    img {
        position: absolute;
        top: 0px;
        left: 0px;
        cursor: pointer;
    }

    &:hover {
        img {
            top: -13px;
        }

    }

}