Skip to content

Instantly share code, notes, and snippets.

@impressivewebs
Created April 6, 2014 09:19
Show Gist options
  • Select an option

  • Save impressivewebs/10003500 to your computer and use it in GitHub Desktop.

Select an option

Save impressivewebs/10003500 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.4)
// Compass (v1.0.0.alpha.18)
// ----
%example {
color: blue;
font-weight: bold;
font-size: 2em;
}
@media (max-width: 800px) {
.generic-class {
@extend %example;
}
}
You may not @extend an outer selector from within @media.
You may only @extend selectors within the same directive.
From "@extend %example" on line 9.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment