Skip to content

Instantly share code, notes, and snippets.

@adambair
Created October 20, 2016 03:09
Show Gist options
  • Save adambair/4b8b12fb206309b91cb2d02bd1c96598 to your computer and use it in GitHub Desktop.
Save adambair/4b8b12fb206309b91cb2d02bd1c96598 to your computer and use it in GitHub Desktop.
@mixin debug-label($text, $bg-color:#000000)
&:before
top: 0
right: 0
position: absolute
content: $text
color: #ffffff
z-index: 100
padding: 5px 10px 5px 10px
background-color: $bg-color
@mixin debug-media-queries
@media(min-width: #{$screen-lg})
body
$debug-color: purple
background: $debug-color
+debug-label('screen-lg', $debug-color)
@media(max-width: #{$screen-lg})
body
$debug-color: green
background: $debug-color
+debug-label('screen-md', $debug-color)
@media(max-width: #{$screen-md})
body
$debug-color: blue
background: $debug-color
+debug-label('screen-sm', $debug-color)
@media(max-width: #{$screen-sm})
body
$debug-color: sienna
background: $debug-color
+debug-label('screen-ms', $debug-color)
@media(max-width: #{$screen-xs})
body
$debug-color: red
background: $debug-color
+debug-label('screen-xs', $debug-color)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment