Spaces:
Running
Running
File size: 510 Bytes
2f49513 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
.app-container {
height: 100vh;
display: flex;
flex-direction: column;
}
.app-title, .app-subtitle {
margin-left: 24px;
margin-bottom: 0;
}
.app-stage {
flex: 1;
display: flex;
flex-direction: column;
align-items: stretch;
justify-content: space-around;
}
.app-stage-section {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.app-stage-section.top {
flex: 2;
}
.app-stage-section.bottom {
flex: 1;
background: var(--bg-secondary);
}
|