16 lines
259 B
CSS
16 lines
259 B
CSS
.welcome {
|
|
display: grid;
|
|
height: 100%;
|
|
place-items: center;
|
|
color: var(--muted);
|
|
font-size: 20px;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.app {
|
|
height: 100%;
|
|
display: grid;
|
|
grid-template-rows: 1fr 72px;
|
|
grid-template-columns: 500px 1fr;
|
|
gap: 1em;
|
|
}
|