Skip to content

Commit

Permalink
Add todo spec test for libsass issue 2346
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreter committed Mar 10, 2017
1 parent 499d91f commit a60f0e1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions spec/libsass-todo-issues/issue_2346/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
li:nth-child(3n - 3) {
color: red;
}
6 changes: 6 additions & 0 deletions spec/libsass-todo-issues/issue_2346/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
$items: 3;
li {
&:nth-child(#{$items}n - #{$items}) {
color: red;
}
}

0 comments on commit a60f0e1

Please sign in to comment.