We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6207f4f + 5075c02 commit 9a8fa70Copy full SHA for 9a8fa70
spec/libsass-todo-issues/issue_2959.hrx
@@ -0,0 +1,31 @@
1
+<===> input.scss
2
+%color {
3
+ color: blue;
4
+}
5
+
6
+@mixin getOverridedSelector {
7
+ &#{&} {
8
+ @content;
9
+ }
10
11
12
+.foo {
13
+ @include getOverridedSelector {
14
+ @extend %color;
15
16
17
18
+.bar {
19
20
+ color: red;
21
22
23
24
+<===> output.css
25
+.foo.foo {
26
27
28
29
+.bar.bar {
30
31
0 commit comments