2024-09-30 19:36:06 +02:00

20 lines
214 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;
}