Skip to content

Commit

Permalink
fix(layout): fixed breakpoints limits (#781)
Browse files Browse the repository at this point in the history
  • Loading branch information
kelle62819 authored and emoralesb05 committed Jul 31, 2017
1 parent ee7f40f commit 2e3b35f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/platform/core/common/styles/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ $caption-font-size-base: rem(1.200) !default;
// Layout
$baseline-grid: 8px !default;
$layout-breakpoint-xs: 600px !default;
$layout-breakpoint-sm: 600px !default;
$layout-breakpoint-md: 960px !default;
$layout-breakpoint-lg: 1280px !default;
$layout-breakpoint-sm: 960px !default;
$layout-breakpoint-md: 1280px !default;
$layout-breakpoint-lg: 1920px !default;
$layout-gutter-width: ($baseline-grid * 2) !default;

// Typography
Expand Down

0 comments on commit 2e3b35f

Please sign in to comment.