apply max to body
This commit is contained in:
parent
528cd02588
commit
dd0a0d0ced
@ -1769,6 +1769,10 @@ select {
|
|||||||
max-width: 28rem;
|
max-width: 28rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.max-w-screen-2xl {
|
||||||
|
max-width: 1536px;
|
||||||
|
}
|
||||||
|
|
||||||
.flex-1 {
|
.flex-1 {
|
||||||
flex: 1 1 0%;
|
flex: 1 1 0%;
|
||||||
}
|
}
|
||||||
@ -1945,6 +1949,10 @@ select {
|
|||||||
gap: 3rem;
|
gap: 3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.gap-20 {
|
||||||
|
gap: 5rem;
|
||||||
|
}
|
||||||
|
|
||||||
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
|
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
|
||||||
--tw-space-y-reverse: 0;
|
--tw-space-y-reverse: 0;
|
||||||
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
|
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
|
||||||
@ -3066,8 +3074,24 @@ select {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
|
.xl\:mx-auto {
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.xl\:columns-4 {
|
.xl\:columns-4 {
|
||||||
-moz-columns: 4;
|
-moz-columns: 4;
|
||||||
columns: 4;
|
columns: 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.xl\:grid-cols-6 {
|
||||||
|
grid-template-columns: repeat(6, minmax(0, 1fr));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1536px) {
|
||||||
|
.\32xl\:mx-auto {
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
- if false
|
- if false
|
||||||
%script{:src => "https://cdn.tailwindcss.com"}
|
%script{:src => "https://cdn.tailwindcss.com"}
|
||||||
|
|
||||||
%body
|
%body.max-w-screen-2xl.2xl:mx-auto
|
||||||
= render "layouts/merged/header"
|
= render "layouts/merged/header"
|
||||||
= render "layouts/merged/messages"
|
= render "layouts/merged/messages"
|
||||||
= yield
|
= yield
|
||||||
|
Loading…
Reference in New Issue
Block a user