Skip to content

Instantly share code, notes, and snippets.

@laras126
Created August 15, 2014 14:04
Show Gist options
  • Save laras126/7e7150683bde32d1c2f4 to your computer and use it in GitHub Desktop.
Save laras126/7e7150683bde32d1c2f4 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.0.rc.1)
// ----
$screen-sm: 30em;
$screen-md: 48em;
$screen-lg: 60em;
%fl {
float: left;
}
.main {
@media (min-width: $screen-sm) {
background-image: url(img/nice-img.png);
}
@media (min-width: $screen-md) {
width: 60%;
@extend %fl;
}
}
.sidebar {
@media (min-width: $screen-md) {
width: 40%;
@extend %fl;
}
}
You may not @extend an outer selector from within @media.
You may only @extend selectors within the same directive.
From "@extend %fl" on line 16.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment