We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9454731 commit a5d6d0dCopy full SHA for a5d6d0d
3 files changed
packages/panda-san/src/layout/container.scss
@@ -1,6 +1,5 @@
1
.container {
2
margin: 0 auto;
3
- max-width: 1344px;
4
5
@each $breakpoint-name, $gutter in $container-gutters {
6
@include breakpoint($breakpoint-name) {
packages/panda-san/src/variables/breakpoints.scss
@@ -1,11 +1,11 @@
-$mobile: 768px;
-$tablet: 1023px;
-$desktop: 1215px;
-$widescreen: 1407px;
+$tablet: 769px;
+$desktop: 1024px;
+$widescreen: 1216px;
+$fullhd: 1408px;
$breakpoints: (
7
- mobile: $mobile,
8
tablet: $tablet,
9
desktop: $desktop,
10
- widescreen: $widescreen
+ widescreen: $widescreen,
+ fullhd: $fullhd
11
);
packages/panda-san/src/variables/container.scss
@@ -1,6 +1,6 @@
$container-gutters: (
- mobile: 0,
- tablet: 0,
+ tablet: 32px,
+ widescreen: 32px,
desktop: 32px,
- widescreen: 32px
+ fullhd: 32px
0 commit comments