Skip to content

Instantly share code, notes, and snippets.

@anfibiacreativa
Created February 5, 2020 11:35
Show Gist options
  • Save anfibiacreativa/7eca0a487f7c04338e0abdecc95a37f4 to your computer and use it in GitHub Desktop.
Save anfibiacreativa/7eca0a487f7c04338e0abdecc95a37f4 to your computer and use it in GitHub Desktop.
// Now let's talk about modifiers
// do!
.example {
&__wrapper {
&--wide {
// code
}
&--narrow {
// code
}
}
&__hl {
&--red {
// code
}
}
}
// don't!
.example {
&__wrapper {
&--info {
// code
}
&--firstElement {
// code
}
}
&__hl {
&--productTitle {
// code
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment