Skip to content

Commit

Permalink
Spec for preserving whitespaces surrounding selectors
Browse files Browse the repository at this point in the history
  • Loading branch information
mgol committed Oct 30, 2014
1 parent 26cecb1 commit 77b3718
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
7 changes: 7 additions & 0 deletions spec/libsass-todo-issues/issue_552/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
a,
div {
top: 0; }

.a.c,
.b.c {
color: red; }
11 changes: 11 additions & 0 deletions spec/libsass-todo-issues/issue_552/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
a,
div {
top: 0;
}

.a,
.b {
&.c {
color: red;
}
}

0 comments on commit 77b3718

Please sign in to comment.