Skip to content

Instantly share code, notes, and snippets.

@andyharris
Created November 1, 2012 18:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save andyharris/3995673 to your computer and use it in GitHub Desktop.
Save andyharris/3995673 to your computer and use it in GitHub Desktop.
Why does my visual grid not change?
$visual-grid : true;
// ---------------------------------------------------------------------------
// Imports
@import "bourbon/bourbon";
@import "neat/neat";
@import "neat/neat-helpers";
$landscape: new-breakpoint(min-width 480px 4);
$tablet: new-breakpoint(min-width 760px 8);
$desktop: new-breakpoint(min-width 960px 12);
header {
background: blue;
}
@include media($landscape) {
header {
background: red;
}
}
@include media($tablet) {
header {
background: pink;
}
}
@include media($desktop) {
header {
background: orange;
}
}
@nitely
Copy link

nitely commented Mar 2, 2015

@gin93r double check you have the right sass --version for your neat version.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment