Skip to content

Instantly share code, notes, and snippets.

@airen
Created July 2, 2015 08:04
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 airen/06dc22d7af9555b11168 to your computer and use it in GitHub Desktop.
Save airen/06dc22d7af9555b11168 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
.box {
color: red;
&:before{
color:green;
}
}
.box{
color: red;
&::before {
color: yellow;
}
}
.box {
color: red;
}
.box:before {
color: green;
}
.box {
color: red;
}
.box::before {
color: yellow;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment