Skip to content

Instantly share code, notes, and snippets.

@tomrishworth
Last active August 29, 2015 14:19
Show Gist options
  • Save tomrishworth/6f91ff3db5380cdd8936 to your computer and use it in GitHub Desktop.
Save tomrishworth/6f91ff3db5380cdd8936 to your computer and use it in GitHub Desktop.
body {
&:after {
position: fixed;
bottom: 0;
right: 0;
content: 'xs (- 768px)';
background: #333;
color: #fff;
padding: 3px 6px;
@include MQ(S) {
content: 'sm (769px - 992px)';
}
@include MQ(M) {
content: 'md (992px - 1200px)';
}
@include MQ(L) {
content: 'lg (1200px +)'
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment