Skip to content

Instantly share code, notes, and snippets.

@angellromero
Created August 25, 2015 19:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angellromero/167f68962b6f672593a2 to your computer and use it in GitHub Desktop.
Save angellromero/167f68962b6f672593a2 to your computer and use it in GitHub Desktop.
Hidden Utils
.hidden-sm,
.hidden-md,
.hidden-lg {
.show;
}
.hidden-sm {
@media (max-width: @screen-sm) {
.hide;
}
}
.hidden-md {
@media (max-width: @screen-md) {
.hide;
}
}
.hidden-lg {
@media (max-width: @screen-lg) {
.hide;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment