Skip to content

Instantly share code, notes, and snippets.

@pixelmatrix
Created May 4, 2011 23:46
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 pixelmatrix/956262 to your computer and use it in GitHub Desktop.
Save pixelmatrix/956262 to your computer and use it in GitHub Desktop.
Bug with Middleman's default sass
@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
@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