Skip to content

Instantly share code, notes, and snippets.

@dmjcomdem
Last active January 8, 2017 05:53
Show Gist options
  • Save dmjcomdem/b73cbaf699cc42c7df695c66e96d6a63 to your computer and use it in GitHub Desktop.
Save dmjcomdem/b73cbaf699cc42c7df695c66e96d6a63 to your computer and use it in GitHub Desktop.
$name-class: ".block1";
#{$name-class} {
font-size: 100px;
&__inner {
font-size: 10px;
&:before { content: ""; }
@at-root #{$name-class}:hover &:before {
color: red;
}
.active#{&}:hover { content: 'active'; }
} //&__inner
}
$name-class: ".block4";
#{$name-class} {
font-size: 100px;
&__inner {
font-size: 10px;
@at-root #{$name-class}:hover & {
color: red;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment