Created
May 14, 2014 17:55
-
-
Save nhall/c77aa02289b7e3bd2746 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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 (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; | |
} | |
} |
This file contains 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 { | |
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