Last active
December 20, 2015 21:48
-
-
Save babsgosgens/6199734 to your computer and use it in GitHub Desktop.
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
$column-breakpoint: false !default; |
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
// Example 1a: manually define breakpoint of a single expression | |
$column-breakpoint: (max-width 30em); | |
// Example 2a: manually define breakpoint of multiple expressions | |
$column-breakpoint: (min-width 30em) , (max-width 60em) , (min-resolution 220dpi); |
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
// Example 2: predefined breakpoints | |
$small_handheld_tall: (max-width px-to-em(480px,$base-font-size)) , (orientation portrait) !default; | |
$small_handheld_wide: (max-width px-to-em(480px,$base-font-size)) , (orientation landscape) !default; | |
$column-breakpoint: $small_handheld_wide; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment