18 lines
231 B
CSS
18 lines
231 B
CSS
.page {
|
|
background-color: var(--Background-Primary);
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.wrap {
|
|
padding: 1em;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.nav {
|
|
list-style: none;
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 1em;
|
|
}
|