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;
|
|
|
|
}
|
2017-07-03 14:01:35 +02:00
|
|
|
}
|