Created
December 1, 2014 14:17
-
-
Save oleglukashev/f33196c9e24b08f072fb to your computer and use it in GitHub Desktop.
check mobile by css
This file contains hidden or 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
$screen-xs-min: 480px; // Tiny screen / phone | |
$screen-sm-min: 768px; // Small screen / tablet | |
$screen-md-min: 992px; // Medium screen / desktop | |
$screen-lg-min: 1200px; // Large screen / wide desktop | |
// So media queries don't overlap when required, provide a maximum | |
$screen-xs-max: ($screen-sm-min - 1); | |
$screen-sm-max: ($screen-md-min - 1); | |
$screen-md-max: ($screen-lg-min - 1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment