Last active
June 28, 2018 05:48
-
-
Save moshfeu/065c3448f9db77c087d1dca5bfe226c7 to your computer and use it in GitHub Desktop.
Parent with class scss solution
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 .child { | |
padding-top: 4rem; | |
} | |
.no-padding.parent .child { | |
padding-top: 0; | |
} |
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.4.21) | |
// Compass (v1.0.3) | |
// ---- | |
.parent { | |
.child { | |
padding-top: 4rem; | |
@at-root .no-padding#{&} { | |
padding-top: 0; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment