feat: make enter details bottom sheet pixed, and add spacing at the bottom of page * feat: make enter details bottom sheet pixed, and add spacing at the bottom of page Approved-by: Arvid Norlin
29 lines
471 B
CSS
29 lines
471 B
CSS
.section {
|
|
background: var(--Base-Surface-Subtle-Normal);
|
|
padding: var(--Spacing-x7) 0;
|
|
}
|
|
|
|
.maxWidth {
|
|
display: grid;
|
|
gap: var(--Spacing-x6);
|
|
margin: 0 auto;
|
|
max-width: var(--max-width-page);
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.section {
|
|
padding: var(--Spacing-x9) 0;
|
|
}
|
|
|
|
.maxWidth {
|
|
gap: var(--Spacing-x4);
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.maxWidth {
|
|
gap: var(--Spacing-x2);
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
}
|