18 lines
304 B
CSS
18 lines
304 B
CSS
.page {
|
|
position: relative;
|
|
display: flex;
|
|
min-height: 100vh;
|
|
background-color: var(--background-color);
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.main-content {
|
|
display: flex;
|
|
flex: 1;
|
|
padding: 1.5rem;
|
|
align-items: stretch;
|
|
text-align: center;
|
|
flex-direction: column;
|
|
}
|
|
|