scss-library/components/01_Layouts/flexRow/_flexRow.scss

21 lines
259 B
SCSS
Raw Normal View History

2020-08-21 17:20:29 +02:00
@mixin RV-FlexRow {
&__Container {
display: flex;
flex-direction: row;
gap: 10px;
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 11:36:58 +02:00
@include RV-AlignContent;
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
}