ultrawidify/src/res/css/flex.css

49 lines
498 B
CSS
Raw Normal View History

2018-11-29 21:07:27 +01:00
.flex {
display: flex;
}
.flex-row {
flex-direction: row;
}
.flex-column {
flex-direction: column;
}
.flex-auto {
flex: 1 1 auto;
}
.flex-grow {
flex-grow: 1;
2019-01-03 02:07:16 +01:00
}
2019-01-17 22:16:55 +01:00
.flex-nogrow {
flex-grow: 0;
}
.flex-shrink {
flex-shrink: 1;
}
.flex-noshrink {
flex-shrink: 0;
}
2019-01-03 02:07:16 +01:00
.flex-wrap {
flex-wrap: wrap;
}
2019-01-17 22:16:55 +01:00
.flex-center {
align-content: center;
}
.flex-end {
justify-content: flex-end;
}
2019-01-17 22:16:55 +01:00
.flex-cross-center {
justify-content: center;
}
.flex-self-center {
align-self: center;
}