Created
November 14, 2018 17:36
-
-
Save starryeyez024/606fcb8386537cfbf168cb1db9756060 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
// ---- | |
// Sass (vundefined) | |
// Compass (vundefined) | |
// dart-sass (v1.6.2) | |
// ---- | |
.parent { | |
&-child { | |
color:red; | |
& + & { | |
color:purple; | |
} | |
} | |
} |
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
.parent-child { | |
color: red; | |
} | |
.parent-child + .parent-child { | |
color: purple; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment