mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-22 03:34:03 +00:00
ebe142a62a
Create css strucure, clean up the index html and use proper tags. Visualy minor changes, but this allow us maint better visuals and start the css standards that will help us future
20 lines
297 B
CSS
20 lines
297 B
CSS
.container {
|
|
display: flex;
|
|
padding: 1rem;
|
|
max-width: 540px !important;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
opacity: 1;
|
|
transition: opacity 0.3s ease-in-out;
|
|
}
|
|
|
|
.container__row {
|
|
display: flex;
|
|
gap: 1rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.container__row--equal > * {
|
|
flex: 1 1 100%;
|
|
}
|