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