Skip to content

Commit 1b6e677

Browse files
committed
Add spec for LibSass issue 2681
[skip libsass]
1 parent e6ea352 commit 1b6e677

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
%button-styles {
2+
color: red;
3+
4+
&:focus {
5+
color: blue;
6+
}
7+
}
8+
9+
[type="button"] {
10+
@extend %button-styles;
11+
}
12+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[type="button"] {
2+
color: red;
3+
}
4+
[type="button"]:focus {
5+
color: blue;
6+
}

0 commit comments

Comments
 (0)