Skip to content

Commit

Permalink
Merge pull request #11 from Lemonpeach/poc
Browse files Browse the repository at this point in the history
fix: correct breakpoints & container
  • Loading branch information
RickEyre authored Nov 12, 2019
2 parents 9454731 + a5d6d0d commit 7b9a151
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
1 change: 0 additions & 1 deletion packages/panda-san/src/layout/container.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.container {
margin: 0 auto;
max-width: 1344px;

@each $breakpoint-name, $gutter in $container-gutters {
@include breakpoint($breakpoint-name) {
Expand Down
12 changes: 6 additions & 6 deletions packages/panda-san/src/variables/breakpoints.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
$mobile: 768px;
$tablet: 1023px;
$desktop: 1215px;
$widescreen: 1407px;
$tablet: 769px;
$desktop: 1024px;
$widescreen: 1216px;
$fullhd: 1408px;

$breakpoints: (
mobile: $mobile,
tablet: $tablet,
desktop: $desktop,
widescreen: $widescreen
widescreen: $widescreen,
fullhd: $fullhd
);
6 changes: 3 additions & 3 deletions packages/panda-san/src/variables/container.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$container-gutters: (
mobile: 0,
tablet: 0,
tablet: 32px,
widescreen: 32px,
desktop: 32px,
widescreen: 32px
fullhd: 32px
);

0 comments on commit 7b9a151

Please sign in to comment.