Skip to content

Instantly share code, notes, and snippets.

@Westbrook
Created April 22, 2014 14:49
Embed
What would you like to do?
Generated by SassMeister.com.
// ----
// libsass (v0.7.0)
// ----
%extend {
@media only screen and (max-width: 600px) {
width:100%;
}
}
.extend {
@extend %extend;
}
@media only screen and (max-width: 600px) {
%extend {
width: 100%; } }
@Westbrook
Copy link
Author

Here the libsass processing diverges from the Sass 3.3.5 processing by failing to pass the extended selector down into the media query.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment