Skip to content

Instantly share code, notes, and snippets.

@shuhei
Created February 23, 2016 14:26
Show Gist options
  • Save shuhei/430e1e66c0c9eb29f0c0 to your computer and use it in GitHub Desktop.
Save shuhei/430e1e66c0c9eb29f0c0 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
.my-awesome-block {
padding: 20px;
&__element-1 {
> p {
font-size: 16px;
}
}
&--modifier &__element-1 {
> p {
font-size: 24px;
}
}
}
.my-awesome-block {
padding: 20px;
}
.my-awesome-block__element-1 > p {
font-size: 16px;
}
.my-awesome-block--modifier .my-awesome-block__element-1 > p {
font-size: 24px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment