27 lines
316 B
CSS
27 lines
316 B
CSS
main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: start;
|
|
gap: 0.375rem;
|
|
}
|
|
|
|
h1 {
|
|
width: fit-content;
|
|
margin: auto;
|
|
}
|
|
|
|
h1 > .dot {
|
|
color: var(--accent);
|
|
}
|
|
|
|
.menu {
|
|
justify-content: center;
|
|
}
|
|
|
|
.configuration {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: start;
|
|
gap: 0.375rem;
|
|
}
|