Skip to content

Instantly share code, notes, and snippets.

@moshfeu
Last active June 28, 2018 05:48
Show Gist options
  • Save moshfeu/065c3448f9db77c087d1dca5bfe226c7 to your computer and use it in GitHub Desktop.
Save moshfeu/065c3448f9db77c087d1dca5bfe226c7 to your computer and use it in GitHub Desktop.
Parent with class scss solution
.parent .child {
padding-top: 4rem;
}
.no-padding.parent .child {
padding-top: 0;
}
// ----
// 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