Created
August 26, 2015 01:06
-
-
Save gkiely/5aa63081c30772d561bb to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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) | |
// ---- | |
.test { | |
.flex & &__yo{ | |
background: red; | |
} | |
} | |
.video-player{ | |
html:not(.no-flex):not(.flexbox-tweener) & | |
.video-control{ | |
background: red; | |
} | |
} |
This file contains 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
.flex .test .test__yo { | |
background: red; | |
} | |
html:not(.no-flex):not(.flexbox-tweener) .video-player | |
.video-control { | |
background: red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment