Created
May 4, 2011 23:46
-
-
Save pixelmatrix/956262 to your computer and use it in GitHub Desktop.
Bug with Middleman's default sass
This file contains 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
@import "compass" | |
@import "blueprint" | |
//… | |
$blueprint-font-size: 15px | |
$blueprint-grid-columns: 12 | |
$blueprint-grid-width: 56px | |
$blueprint-grid-margin: 28px | |
.column | |
+column(4) | |
//Broken. Doesn't detect 980 outer width |
This file contains 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
@import "compass" | |
//… | |
$blueprint-font-size: 15px | |
$blueprint-grid-columns: 12 | |
$blueprint-grid-width: 56px | |
$blueprint-grid-margin: 28px | |
@import "blueprint" | |
.column | |
+column(4) | |
//Works. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment