29 lines
482 B
Plaintext
29 lines
482 B
Plaintext
.flex-horiz {
|
|
display: flex;
|
|
flex-direction: row;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.flex-vert {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
}
|
|
|
|
.flex-horiz > *, .flex-vert > * {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
flex-basis: 1px;
|
|
position: relative;
|
|
}
|
|
|
|
.flex-horiz .flex-shrink, .flex-vert .flex-shrink {
|
|
flex-grow: 0;
|
|
flex-shrink: 1;
|
|
}
|
|
|
|
.flex-horiz .flex-grow, .flex-vert .flex-grow {
|
|
flex-grow: 1;
|
|
flex-shrink: 0;
|
|
} |