13 lines
232 B
CSS
13 lines
232 B
CSS
.container {
|
|
flex-grow: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: stretch;
|
|
align-items: stretch;
|
|
|
|
& > * {
|
|
flex-grow: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|