Skip to content

Instantly share code, notes, and snippets.

@AndersDJohnson
Last active June 5, 2019 13:36
Show Gist options
  • Save AndersDJohnson/8c233f5b4cc5467a00eaa91a07e87cff to your computer and use it in GitHub Desktop.
Save AndersDJohnson/8c233f5b4cc5467a00eaa91a07e87cff to your computer and use it in GitHub Desktop.
@media (min-width: @screen-xs-min) {
.hidden-xs-min-up {
display: none !important;
}
}
@screen-xs-min-max: @screen-xs-min - 1;
@media (max-width: @screen-xs-min-max) {
.hidden-xs-min-down {
display: none !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment