Skip to content

Instantly share code, notes, and snippets.

@nhall
Created May 14, 2014 17:55
Show Gist options
  • Save nhall/c77aa02289b7e3bd2746 to your computer and use it in GitHub Desktop.
Save nhall/c77aa02289b7e3bd2746 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.7)
// Compass (v1.0.0.alpha.18)
// ----
// Using `@at-root`
.parent {
background-color: #0e0e0e;
.child-class {
color: #fff;
}
}
.parent {
$font-size: 12px;
background-color: #0e0e0e;
@at-root .child-class {
$font-size: 13px;
font-size: $font-size;
color: #fff;
}
}
.parent {
background-color: #0e0e0e;
}
.parent .child-class {
color: #fff;
}
.parent {
background-color: #0e0e0e;
}
.child-class {
font-size: 13px;
color: #fff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment