2022-11-09 12:33:20 +01:00
|
|
|
@import "constants";
|
|
|
|
|
2017-07-03 14:01:35 +02:00
|
|
|
.flex {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
&.align-center {
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.align-start {
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
|
2023-06-26 18:27:40 +02:00
|
|
|
&.align-end {
|
|
|
|
align-items: end;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2020-09-08 12:35:44 +02:00
|
|
|
&.justify-end {
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
2023-04-24 15:13:21 +02:00
|
|
|
|
|
|
|
&.auto {
|
|
|
|
flex: auto;
|
|
|
|
}
|
2019-01-17 15:15:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.flex-grow {
|
|
|
|
flex-grow: 1;
|
2017-07-03 14:01:35 +02:00
|
|
|
}
|
2021-04-15 17:37:23 +02:00
|
|
|
|
|
|
|
.flex-no-shrink {
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
2022-11-09 12:33:20 +01:00
|
|
|
|
|
|
|
.flex-gap-2 {
|
2023-10-02 09:33:45 +02:00
|
|
|
gap: 2 * $default-spacer;
|
2022-11-09 12:33:20 +01:00
|
|
|
}
|
2023-07-17 10:41:38 +02:00
|
|
|
|
|
|
|
.flex-1 {
|
|
|
|
flex: 1;
|
|
|
|
}
|