Skip to content

Instantly share code, notes, and snippets.

@jwlms
Created July 15, 2013 23:48
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 jwlms/6004556 to your computer and use it in GitHub Desktop.
Save jwlms/6004556 to your computer and use it in GitHub Desktop.
media query nesting
.svg #site-title a { // OK
@media( max-width: $w7 ) {
background: transparent url(images/flv-logo.svg) no-repeat 0 0;
}
}
.svg #site-title a { // no
@media( max-width: $w7 ) {
@media ( max-device-width: $ipad ) {
background: transparent url(images/flv-logo.svg) no-repeat 0 0;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment