Created
March 27, 2013 19:50
-
-
Save procload/5257453 to your computer and use it in GitHub Desktop.
Cannot use the "@extend .spanN;" within a media query in this version and future version of Sass.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.main-content { | |
@extend %container-fluid; | |
.content { | |
@extend .row-fluid; | |
} | |
.sidebar { | |
@include respond-to(47em) { | |
float: left; | |
@extend .span3; // Cannot use this type of @extend within a media query | |
} | |
} //sidebar | |
.main-article { | |
@include respond-to(47em) { | |
float: left; | |
@extend .span8; // Cannot use this type of @extend within a media query | |
@extend .offset1; // Cannot use this type of @extend within a media query | |
} | |
} //main-article | |
} //main-content |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment