Skip to content

Instantly share code, notes, and snippets.

@AndreKelling
Created April 11, 2019 07:41
Show Gist options
  • Save AndreKelling/f2b731d6296e226e8ef178f902a8e605 to your computer and use it in GitHub Desktop.
Save AndreKelling/f2b731d6296e226e8ef178f902a8e605 to your computer and use it in GitHub Desktop.
Nested Ampersand Sample
.nested-item {
$this: &;
&__wrapper {
display: flex;
}
&__title {
padding-bottom: 10px;
}
&__image-container {
display: block;
#{$this}__image-placer--svg & {
position: absolute;
}
}
&:focus,
&:hover {
#{$this}__description {
text-decoration: underline;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment