Skip to content

Instantly share code, notes, and snippets.

@Haugen
Last active April 22, 2019 14:40
Show Gist options
  • Save Haugen/526c09cbff266d27a36c408f767ff128 to your computer and use it in GitHub Desktop.
Save Haugen/526c09cbff266d27a36c408f767ff128 to your computer and use it in GitHub Desktop.
Example usage of BEM style SASS
.block {
background: $black;
height: 500px;
@media(min-width: $screen-lg-min) {
height: 430px;
}
&__element {
margin: 0 auto;
padding: 105px 0 0 0;
width: 195px;
@media(min-width: $screen-sm-min) {
display: inline-block;
padding: 95px 0 0 0;
width: 440px;
}
&--modifier {
font-color: #efefef;
}
}
&--block-modifier {
font-color: #efefef;
font-size: 12px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment