Skip to content

Instantly share code, notes, and snippets.

@ancienthero
Created May 1, 2018 12:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ancienthero/6c318077c2c63236d18969c17407409f to your computer and use it in GitHub Desktop.
Save ancienthero/6c318077c2c63236d18969c17407409f to your computer and use it in GitHub Desktop.
BEM block example
@include critical() {
.c-barchart-button {
$b: #{&};
display: inline-block;
padding: 5px;
user-select: none;
&:hover {
- .c-barchart-button__chart {
+ #{$b}__chart {
fill: #c4e4f1;
}
- .c-barchart-button__shadows {
+ #{$b}__shadows {
fill: #00a3e0;
}
}
&:active {
- .c-barchart-button__chart {
+ #{$b}__chart {
fill: #00a3e0;
}
- .c-barchart-button__shadows {
+ #{$b}__shadows {
fill: #00a3e0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment