15 lines
142 B
CSS
15 lines
142 B
CSS
.flex {
|
|
display: flex;
|
|
}
|
|
|
|
.flex-row {
|
|
flex-direction: row;
|
|
}
|
|
|
|
.flex-column {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.flex-auto {
|
|
flex: 1 1 auto;
|
|
} |