Created
June 21, 2017 12:23
-
-
Save yacine/8da2efd25e444e0f5cefe3751b8286c3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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