Skip to content

Instantly share code, notes, and snippets.

@dragstarcrowant
Created November 26, 2014 13:45
Show Gist options
  • Save dragstarcrowant/9142a19b2cf919a33060 to your computer and use it in GitHub Desktop.
Save dragstarcrowant/9142a19b2cf919a33060 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
.a {
$parent: &;
.b {
&__c {
color: red;
@at-root #{$parent}.here {
color:#000;
}
}
}
&.d {
.b {
&__c {
color: green;
}
}
}
}
.a .b__c {
color: red;
}
.a.here {
color: #000;
}
.a.d .b__c {
color: green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment