10 lines
211 B
CSS
10 lines
211 B
CSS
.page {
|
|
background-color: var(--Base-Background-Primary-Normal);
|
|
min-height: 50dvh;
|
|
max-width: var(--max-width-page);
|
|
margin: 0 auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|