Created
July 10, 2015 19:01
-
-
Save tddewey/2bc1e2f68ca7f1a7bfc8 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) | |
// ---- | |
.header { | |
// mobile modifier | |
&--mobile { | |
background: red; | |
} | |
// nav block | |
&-nav { | |
background: green; | |
a { color: black }; | |
} | |
} | |
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
.header--mobile { | |
background: red; | |
} | |
.header-nav { | |
background: green; | |
} | |
.header-nav a { | |
color: black; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment