2020-08-21 17:20:29 +02:00
|
|
|
@mixin RV-FlexRow {
|
|
|
|
&__Container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-around;
|
2020-08-21 16:50:22 +02:00
|
|
|
|
2020-08-21 17:20:29 +02:00
|
|
|
&--wrap {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
2020-08-21 16:50:22 +02:00
|
|
|
}
|
|
|
|
|
2020-08-21 17:20:29 +02:00
|
|
|
&__Item {
|
2020-08-21 16:50:22 +02:00
|
|
|
width: 100%;
|
2020-08-23 14:40:09 +02:00
|
|
|
@include RV-Alignment;
|
2020-08-21 16:50:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-21 17:20:29 +02:00
|
|
|
.RV-FlexRow{
|
|
|
|
@include RV-FlexRow;
|
2020-08-21 16:50:22 +02:00
|
|
|
}
|