Created
July 17, 2013 11:46
-
-
Save kzrl/6019785 to your computer and use it in GitHub Desktop.
Neat breakpoints for media() queries
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
// Breakpoints. | |
$desktop: new-breakpoint( min-width 960px 12 ); | |
$tablet: new-breakpoint( min-width 768px max-width 959px 12 ); | |
$mobile: new-breakpoint( max-width 767px 12 ); | |
$handheld: new-breakpoint( max-width 959px 12 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment