Skip to content

Instantly share code, notes, and snippets.

@Westbrook
Created April 22, 2014 14:49
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 Westbrook/11182154 to your computer and use it in GitHub Desktop.
Save Westbrook/11182154 to your computer and use it in GitHub Desktop.
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