Skip to content

Instantly share code, notes, and snippets.

@prod3v3loper
Last active February 19, 2019 10:48
Show Gist options
  • Save prod3v3loper/4f154082df4451a4ddb048346ad10db5 to your computer and use it in GitHub Desktop.
Save prod3v3loper/4f154082df4451a4ddb048346ad10db5 to your computer and use it in GitHub Desktop.
SASS Parent Selector
.block {
/* Hold parent */
$this: &;
/* Element */
&__elem {
/* Element */
#{$this}__something {
background: white;
}
/* Modifier */
#{$this}--something {
background: blue;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment