Skip to content

Instantly share code, notes, and snippets.

@malrase
Created October 6, 2014 22:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save malrase/e35f97e487b68f85b1f0 to your computer and use it in GitHub Desktop.
Save malrase/e35f97e487b68f85b1f0 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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);
}
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