Skip to content

Instantly share code, notes, and snippets.

@fret2buzz
Created January 27, 2016 13:34
Show Gist options
  • Select an option

  • Save fret2buzz/5a127a0baee828ee6315 to your computer and use it in GitHub Desktop.

Select an option

Save fret2buzz/5a127a0baee828ee6315 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.3.2)
// ----
/*bad*/
.text {
font-size: 12px;
.open & {
display: block;
}
.close & {
display: none;
}
}
/*good*/
.text {
font-size: 12px;
}
.open .text {
display: block;
}
.close .text {
display: none;
}
/*bad*/
.text {
font-size: 12px;
}
.open .text {
display: block;
}
.close .text {
display: none;
}
/*good*/
.text {
font-size: 12px;
}
.open .text {
display: block;
}
.close .text {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment