Skip to content

Instantly share code, notes, and snippets.

@greymechanic
Created April 3, 2015 16:39
Show Gist options
  • Save greymechanic/68e674a2b11d8e403e01 to your computer and use it in GitHub Desktop.
Save greymechanic/68e674a2b11d8e403e01 to your computer and use it in GitHub Desktop.
visual grid color indicators
body{
background: $blue;
@include media($small-up) {
background: purple;
}
@include media($medium-up) {
background: green;
}
@include media($large-up) {
background: black;
}
@include media($x-large-up) {
background: gray;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment