Created
January 26, 2022 09:07
-
-
Save christianhaller/b76b7296eea4300352838e478956cf4a 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
/* | |
change the sass compiler from dart-sass to libsass, | |
retrigger compiling and | |
see the missing selector in the right window | |
*/ | |
%placeholder { | |
&[disabled], | |
&:hover[disabled]{ | |
color: red; | |
} | |
} | |
.p { | |
@extend %placeholder; | |
} | |
/* | |
expected: | |
.p[disabled], .p:hover[disabled] { | |
color: red; | |
} | |
actual with dart-sass | |
[disabled].p { | |
color: red; | |
} | |
*/ |
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
/* | |
change the sass compiler from dart-sass to libsass, | |
retrigger compiling and | |
see the missing selector in the right window | |
*/ | |
[disabled].p { | |
color: red; | |
} | |
/* | |
expected: | |
.p[disabled], .p:hover[disabled] { | |
color: red; | |
} | |
actual with dart-sass | |
[disabled].p { | |
color: red; | |
} | |
*/ |
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