scss-library/components/01_Layouts/flexRow/_flexRow.scss
2020-08-23 11:36:58 +02:00

21 lines
259 B
SCSS

@mixin RV-FlexRow {
&__Container {
display: flex;
flex-direction: row;
gap: 10px;
justify-content: space-around;
&--wrap {
flex-wrap: wrap;
}
}
&__Item {
width: 100%;
@include RV-AlignContent;
}
}
.RV-FlexRow{
@include RV-FlexRow;
}