Skip to content

Instantly share code, notes, and snippets.

@babsgosgens
Last active December 20, 2015 21:48
Show Gist options
  • Save babsgosgens/6199734 to your computer and use it in GitHub Desktop.
Save babsgosgens/6199734 to your computer and use it in GitHub Desktop.
$column-breakpoint: false !default;
// 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);
// 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