Created
December 8, 2021 14:12
-
-
Save easingthemes/c21615241f894f1cfed04b98082ac495 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Works in both libsass and dart-sass. | |
.one { | |
content: simple-selectors(&); | |
} | |
// Works only in libsass. | |
// Error in dart-sass: Error: $selector: expected selector. | |
.one { | |
.two { | |
content: simple-selectors(&); | |
} | |
} | |
.one { | |
.two { | |
.three { | |
content: simple-selectors(&); | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.one { | |
content: .one; | |
} | |
.one .two { | |
content: .one; | |
} | |
.one .two .three { | |
content: .one; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"sass": { | |
"compiler": "libsass/3.5.5", | |
"extensions": {}, | |
"syntax": "SCSS", | |
"outputStyle": "expanded" | |
}, | |
"autoprefixer": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Gives
Error: $selector: expected selector.
onsimple-selectors(&)