Skip to content

Instantly share code, notes, and snippets.

@dviedma
Created November 18, 2015 02:58
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 dviedma/cce1b53ab2f82cd38c3b to your computer and use it in GitHub Desktop.
Save dviedma/cce1b53ab2f82cd38c3b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
.error {
color: red;
@media screen and (max-width: 320px) {
color: blue;
}
}
.error-important {
@extend .error;
font-weight: bold;
}
.error, .error-important {
color: red;
}
@media screen and (max-width: 320px) {
.error, .error-important {
color: blue;
}
}
.error-important {
font-weight: bold;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment