Skip to content

Commit 21c7d6f

Browse files
committed
Add todo spec test for libsass issue 108
sass/libsass#108
1 parent 81bc577 commit 21c7d6f

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
h1 {
2+
color: red; }
3+
4+
h2 {
5+
color: blue; }
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
$a: red;
2+
3+
@mixin f($a: $a) {
4+
color: $a;
5+
}
6+
7+
h1 {
8+
@include f;
9+
}
10+
11+
h2 {
12+
@include f(blue);
13+
}

0 commit comments

Comments
 (0)