Skip to content

Instantly share code, notes, and snippets.

@yacine
Created June 21, 2017 12:23
Show Gist options
  • Save yacine/8da2efd25e444e0f5cefe3751b8286c3 to your computer and use it in GitHub Desktop.
Save yacine/8da2efd25e444e0f5cefe3751b8286c3 to your computer and use it in GitHub Desktop.
@media (min-width: @screen-xs-min) {}
@media (min-width: @screen-sm-min) {}
@media (min-width: @screen-md-min) {}
@media (min-width: @screen-lg-min) {}
@media (min-width: @screen-xs-max) {}
@media (min-width: @screen-sm-max) {}
@media (min-width: @screen-md-max) {}
// not Mobile
@media (min-width: @grid-float-breakpoint) {}
// Mobile
@media (max-width: @grid-float-breakpoint-max) {}
// Tablet portrait
@media (min-width: @screen-sm-min) and (max-width: @screen-md-min) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment