Created
December 8, 2021 14:13
-
-
Save easingthemes/bdaa14abc039ad72c86b762c6c2c6217 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": "dart-sass/1.32.12", | |
"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