Created
October 6, 2014 22:12
-
-
Save malrase/e35f97e487b68f85b1f0 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 (v2.0.0) | |
// ---- | |
.social-icon { | |
@each $social in facebook, instagram, twitter, email { | |
&--#{$social} { | |
color: blue; | |
} | |
} | |
} | |
@each $social in facebook, instagram, twitter, email { | |
.social-icon--#{$social} { | |
color: red; | |
} | |
} | |
@mixin bem-m($modifier) { | |
&--#{$modifier} { | |
background: green; | |
} | |
} | |
.test { | |
@include bem-m(foo); | |
} |
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
source string:2: error: invalid property name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment