Skip to content

Instantly share code, notes, and snippets.

@yellowberri-snippets
Created September 24, 2013 16:59
Show Gist options
  • Save yellowberri-snippets/6687795 to your computer and use it in GitHub Desktop.
Save yellowberri-snippets/6687795 to your computer and use it in GitHub Desktop.
SASS: Media Query Indicator
#media-query {
position:fixed;
top:5px;
left:5px;
height:10px;
width:10px;
@include border-radius(100%);
z-index:999;
background-color:blue;
@include breakpoint(multiColumn) {
background-color: green;
}
@include breakpoint(narrowColumn) {
background-color:red;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment