scss-library/components/01_Layouts/flexRow/_flexRow.scss
2020-08-23 14:43:34 +02:00

26 lines
304 B
SCSS

@mixin RV-FlexRow {
&__Container {
display: flex;
flex-direction: row;
justify-content: space-around;
&--wrap {
flex-wrap: wrap;
}
}
&__Item {
width: 100%;
@include RV-Alignment;
&--fixedSize {
flex: 0 0;
width: min-content;
}
}
}
.RV-FlexRow{
@include RV-FlexRow;
}