Skip to content

Instantly share code, notes, and snippets.

@starryeyez024
Created November 14, 2018 17:36
Show Gist options
  • Save starryeyez024/606fcb8386537cfbf168cb1db9756060 to your computer and use it in GitHub Desktop.
Save starryeyez024/606fcb8386537cfbf168cb1db9756060 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (vundefined)
// Compass (vundefined)
// dart-sass (v1.6.2)
// ----
.parent {
&-child {
color:red;
& + & {
color:purple;
}
}
}
.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