Created
February 23, 2016 14:26
-
-
Save shuhei/430e1e66c0c9eb29f0c0 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
.my-awesome-block { | |
padding: 20px; | |
&__element-1 { | |
> p { | |
font-size: 16px; | |
} | |
} | |
&--modifier &__element-1 { | |
> p { | |
font-size: 24px; | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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