Skip to content

Commit a5d6d0d

Browse files
committed
fix: correct breakpoints & container
1 parent 9454731 commit a5d6d0d

3 files changed

Lines changed: 9 additions & 10 deletions

File tree

packages/panda-san/src/layout/container.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.container {
22
margin: 0 auto;
3-
max-width: 1344px;
43

54
@each $breakpoint-name, $gutter in $container-gutters {
65
@include breakpoint($breakpoint-name) {
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
$mobile: 768px;
2-
$tablet: 1023px;
3-
$desktop: 1215px;
4-
$widescreen: 1407px;
1+
$tablet: 769px;
2+
$desktop: 1024px;
3+
$widescreen: 1216px;
4+
$fullhd: 1408px;
55

66
$breakpoints: (
7-
mobile: $mobile,
87
tablet: $tablet,
98
desktop: $desktop,
10-
widescreen: $widescreen
9+
widescreen: $widescreen,
10+
fullhd: $fullhd
1111
);
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
$container-gutters: (
2-
mobile: 0,
3-
tablet: 0,
2+
tablet: 32px,
3+
widescreen: 32px,
44
desktop: 32px,
5-
widescreen: 32px
5+
fullhd: 32px
66
);

0 commit comments

Comments
 (0)