Skip to content

Instantly share code, notes, and snippets.

@nielk
Created February 10, 2014 09:11
Show Gist options
  • Save nielk/8912719 to your computer and use it in GitHub Desktop.
Save nielk/8912719 to your computer and use it in GitHub Desktop.
debug-responsive bootstrap utility
body:before {
content: "000";
position: fixed;
bottom: 0;
background-color: #333;
padding: .5em;
color: #fff;
opacity: .3;
z-index: 100000;
}
@media (min-width: @screen-tablet) { body:before {content: "@screen-tablet"} }
@media (min-width: @screen-desktop) { body:before {content: "@screen-desktop"} }
@media (min-width: @screen-lg) { body:before {content: "@screen-lg"} }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment