For CSS output see SASS Parent Selector
Last active
February 19, 2019 10:48
-
-
Save prod3v3loper/4f154082df4451a4ddb048346ad10db5 to your computer and use it in GitHub Desktop.
SASS Parent Selector
This file contains hidden or 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
.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