23 lines
433 B
CSS
23 lines
433 B
CSS
.container {
|
|
background-color: var(--Background-Primary);
|
|
}
|
|
|
|
.layout {
|
|
display: grid;
|
|
font-family: var(--typography-Body-Regular-fontFamily);
|
|
grid-template-rows: auto 1fr;
|
|
min-height: 100dvh;
|
|
max-width: var(--max-width-page);
|
|
margin: 0 auto;
|
|
width: 100%;
|
|
}
|
|
|
|
.content {
|
|
display: grid;
|
|
padding-bottom: var(--Space-x9);
|
|
position: relative;
|
|
max-width: var(--max-width-content);
|
|
margin: 0 auto;
|
|
width: 100%;
|
|
}
|