Skip to content

Commit

Permalink
🔧 chore(layout.scss): Fix incorrect config used for generator width a…
Browse files Browse the repository at this point in the history
…nd height related classes for next build
  • Loading branch information
Spiderpig86 committed Apr 18, 2024
1 parent 1db17d9 commit c5af941
Show file tree
Hide file tree
Showing 7 changed files with 288 additions and 48 deletions.
220 changes: 190 additions & 30 deletions next/dist/cirrus-all.css
Original file line number Diff line number Diff line change
Expand Up @@ -3915,6 +3915,26 @@ section {
min-height: 100vh !important;
}
}
.min-w-xs {
min-width: 640px !important;
}

.min-w-sm {
min-width: 768px !important;
}

.min-w-md {
min-width: 1024px !important;
}

.min-w-lg {
min-width: 1280px !important;
}

.min-w-xl {
min-width: 1536px !important;
}

.min-w-10p {
min-width: 10% !important;
}
Expand Down Expand Up @@ -3960,10 +3980,25 @@ section {
}

.min-w-screen {
min-width: 100vh !important;
min-width: 100vw !important;
}

@media screen and (min-width: 640px) {
.sm\:min-w-xs {
min-width: 640px !important;
}
.sm\:min-w-sm {
min-width: 768px !important;
}
.sm\:min-w-md {
min-width: 1024px !important;
}
.sm\:min-w-lg {
min-width: 1280px !important;
}
.sm\:min-w-xl {
min-width: 1536px !important;
}
.sm\:min-w-10p {
min-width: 10% !important;
}
Expand Down Expand Up @@ -3998,10 +4033,25 @@ section {
min-width: 0 !important;
}
.sm\:min-w-screen {
min-width: 100vh !important;
min-width: 100vw !important;
}
}
@media screen and (min-width: 768px) {
.md\:min-w-xs {
min-width: 640px !important;
}
.md\:min-w-sm {
min-width: 768px !important;
}
.md\:min-w-md {
min-width: 1024px !important;
}
.md\:min-w-lg {
min-width: 1280px !important;
}
.md\:min-w-xl {
min-width: 1536px !important;
}
.md\:min-w-10p {
min-width: 10% !important;
}
Expand Down Expand Up @@ -4036,10 +4086,25 @@ section {
min-width: 0 !important;
}
.md\:min-w-screen {
min-width: 100vh !important;
min-width: 100vw !important;
}
}
@media screen and (min-width: 1024px) {
.lg\:min-w-xs {
min-width: 640px !important;
}
.lg\:min-w-sm {
min-width: 768px !important;
}
.lg\:min-w-md {
min-width: 1024px !important;
}
.lg\:min-w-lg {
min-width: 1280px !important;
}
.lg\:min-w-xl {
min-width: 1536px !important;
}
.lg\:min-w-10p {
min-width: 10% !important;
}
Expand Down Expand Up @@ -4074,10 +4139,25 @@ section {
min-width: 0 !important;
}
.lg\:min-w-screen {
min-width: 100vh !important;
min-width: 100vw !important;
}
}
@media screen and (min-width: 1280px) {
.xl\:min-w-xs {
min-width: 640px !important;
}
.xl\:min-w-sm {
min-width: 768px !important;
}
.xl\:min-w-md {
min-width: 1024px !important;
}
.xl\:min-w-lg {
min-width: 1280px !important;
}
.xl\:min-w-xl {
min-width: 1536px !important;
}
.xl\:min-w-10p {
min-width: 10% !important;
}
Expand Down Expand Up @@ -4112,7 +4192,7 @@ section {
min-width: 0 !important;
}
.xl\:min-w-screen {
min-width: 100vh !important;
min-width: 100vw !important;
}
}
.max-h-10p {
Expand Down Expand Up @@ -4155,8 +4235,8 @@ section {
max-height: 100% !important;
}

.max-h-0 {
max-height: 0 !important;
.max-h-none {
max-height: none !important;
}

.max-h-screen {
Expand Down Expand Up @@ -4194,8 +4274,8 @@ section {
.sm\:max-h-100p {
max-height: 100% !important;
}
.sm\:max-h-0 {
max-height: 0 !important;
.sm\:max-h-none {
max-height: none !important;
}
.sm\:max-h-screen {
max-height: 100vh !important;
Expand Down Expand Up @@ -4232,8 +4312,8 @@ section {
.md\:max-h-100p {
max-height: 100% !important;
}
.md\:max-h-0 {
max-height: 0 !important;
.md\:max-h-none {
max-height: none !important;
}
.md\:max-h-screen {
max-height: 100vh !important;
Expand Down Expand Up @@ -4270,8 +4350,8 @@ section {
.lg\:max-h-100p {
max-height: 100% !important;
}
.lg\:max-h-0 {
max-height: 0 !important;
.lg\:max-h-none {
max-height: none !important;
}
.lg\:max-h-screen {
max-height: 100vh !important;
Expand Down Expand Up @@ -4308,13 +4388,33 @@ section {
.xl\:max-h-100p {
max-height: 100% !important;
}
.xl\:max-h-0 {
max-height: 0 !important;
.xl\:max-h-none {
max-height: none !important;
}
.xl\:max-h-screen {
max-height: 100vh !important;
}
}
.max-w-xs {
max-width: 640px !important;
}

.max-w-sm {
max-width: 768px !important;
}

.max-w-md {
max-width: 1024px !important;
}

.max-w-lg {
max-width: 1280px !important;
}

.max-w-xl {
max-width: 1536px !important;
}

.max-w-10p {
max-width: 10% !important;
}
Expand Down Expand Up @@ -4355,15 +4455,30 @@ section {
max-width: 100% !important;
}

.max-w-0 {
max-width: 0 !important;
.max-w-none {
max-width: none !important;
}

.max-w-screen {
max-width: 100vh !important;
max-width: 100vw !important;
}

@media screen and (min-width: 640px) {
.sm\:max-w-xs {
max-width: 640px !important;
}
.sm\:max-w-sm {
max-width: 768px !important;
}
.sm\:max-w-md {
max-width: 1024px !important;
}
.sm\:max-w-lg {
max-width: 1280px !important;
}
.sm\:max-w-xl {
max-width: 1536px !important;
}
.sm\:max-w-10p {
max-width: 10% !important;
}
Expand Down Expand Up @@ -4394,14 +4509,29 @@ section {
.sm\:max-w-100p {
max-width: 100% !important;
}
.sm\:max-w-0 {
max-width: 0 !important;
.sm\:max-w-none {
max-width: none !important;
}
.sm\:max-w-screen {
max-width: 100vh !important;
max-width: 100vw !important;
}
}
@media screen and (min-width: 768px) {
.md\:max-w-xs {
max-width: 640px !important;
}
.md\:max-w-sm {
max-width: 768px !important;
}
.md\:max-w-md {
max-width: 1024px !important;
}
.md\:max-w-lg {
max-width: 1280px !important;
}
.md\:max-w-xl {
max-width: 1536px !important;
}
.md\:max-w-10p {
max-width: 10% !important;
}
Expand Down Expand Up @@ -4432,14 +4562,29 @@ section {
.md\:max-w-100p {
max-width: 100% !important;
}
.md\:max-w-0 {
max-width: 0 !important;
.md\:max-w-none {
max-width: none !important;
}
.md\:max-w-screen {
max-width: 100vh !important;
max-width: 100vw !important;
}
}
@media screen and (min-width: 1024px) {
.lg\:max-w-xs {
max-width: 640px !important;
}
.lg\:max-w-sm {
max-width: 768px !important;
}
.lg\:max-w-md {
max-width: 1024px !important;
}
.lg\:max-w-lg {
max-width: 1280px !important;
}
.lg\:max-w-xl {
max-width: 1536px !important;
}
.lg\:max-w-10p {
max-width: 10% !important;
}
Expand Down Expand Up @@ -4470,14 +4615,29 @@ section {
.lg\:max-w-100p {
max-width: 100% !important;
}
.lg\:max-w-0 {
max-width: 0 !important;
.lg\:max-w-none {
max-width: none !important;
}
.lg\:max-w-screen {
max-width: 100vh !important;
max-width: 100vw !important;
}
}
@media screen and (min-width: 1280px) {
.xl\:max-w-xs {
max-width: 640px !important;
}
.xl\:max-w-sm {
max-width: 768px !important;
}
.xl\:max-w-md {
max-width: 1024px !important;
}
.xl\:max-w-lg {
max-width: 1280px !important;
}
.xl\:max-w-xl {
max-width: 1536px !important;
}
.xl\:max-w-10p {
max-width: 10% !important;
}
Expand Down Expand Up @@ -4508,11 +4668,11 @@ section {
.xl\:max-w-100p {
max-width: 100% !important;
}
.xl\:max-w-0 {
max-width: 0 !important;
.xl\:max-w-none {
max-width: none !important;
}
.xl\:max-w-screen {
max-width: 100vh !important;
max-width: 100vw !important;
}
}
/* Do the actual balancing only on larger screens */
Expand Down
2 changes: 1 addition & 1 deletion next/dist/cirrus-all.min.css

Large diffs are not rendered by default.

Loading

0 comments on commit c5af941

Please sign in to comment.