Skip to content

Instantly share code, notes, and snippets.

@jackbrown
Last active August 29, 2015 14:23
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 jackbrown/e2a7c8ad81029b48ba14 to your computer and use it in GitHub Desktop.
Save jackbrown/e2a7c8ad81029b48ba14 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
// current
.feed {
a {
&:before {
color:green;
}
}
&__item--has-video &__item-image a {
color: blue;
}
&__item--gallery &__item-image a {
color:red;
}
}
// suggested
.feed_two {
&__item--has-video .feed__item-image a {
color: blue;
}
&__item--gallery .feed__item-image a{
color:red;
}
}
.feed a:before {
color: green;
}
.feed__item--has-video .feed__item-image a {
color: blue;
}
.feed__item--gallery .feed__item-image a {
color: red;
}
.feed_two__item--has-video .feed__item-image a {
color: blue;
}
.feed_two__item--gallery .feed__item-image a {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment