24 lines
273 B
CSS
24 lines
273 B
CSS
.flex {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.flex.row {
|
|
flex-direction: row;
|
|
}
|
|
.flex.column {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.flex.wrappable {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.flex.same-width {
|
|
flex: 1;
|
|
}
|
|
|
|
.flex.space-between {
|
|
justify-content: space-between;
|
|
}
|