Last active
December 9, 2016 19:19
-
-
Save didoo/16e0a78e8ce30a5d7e32a54242ec6022 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
// ---- | |
// Sass (v3.4.21) | |
// Compass (v1.0.3) | |
// ---- | |
.block { | |
display: block; | |
@at-root { | |
.block__element { | |
font-size: 18px; | |
color: green; | |
&.block__element--modifier { | |
color: blue; | |
.android-webkit & { | |
color: pink; | |
} | |
} | |
} | |
} | |
} |
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
.block { | |
display: block; | |
} | |
.block__element { | |
font-size: 18px; | |
color: green; | |
} | |
.block__element.block__element--modifier { | |
color: blue; | |
} | |
.android-webkit .block__element.block__element--modifier { | |
color: pink; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment