2017-07-03 14:01:35 +02:00
|
|
|
.flex {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
&.align-center {
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.align-start {
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
|
2017-09-20 10:52:48 +02:00
|
|
|
&.align-baseline {
|
|
|
|
align-items: baseline;
|
|
|
|
}
|
|
|
|
|
2017-07-03 14:01:35 +02:00
|
|
|
&.justify-between {
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2017-12-21 11:41:44 +01:00
|
|
|
|
|
|
|
&.justify-center {
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2018-01-30 19:11:07 +01:00
|
|
|
|
|
|
|
&.justify-start {
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
2019-01-07 16:04:48 +01:00
|
|
|
|
|
|
|
&.wrap {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
2019-01-17 15:15:46 +01:00
|
|
|
|
|
|
|
&.column {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2019-02-07 13:10:29 +01:00
|
|
|
|
|
|
|
&.row-reverse {
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
}
|
2019-01-17 15:15:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.flex-grow {
|
|
|
|
flex-grow: 1;
|
2017-07-03 14:01:35 +02:00
|
|
|
}
|