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

22 lines
254 B
SCSS

RV-FlexRow {
display: flex;
flex-direction: row;
gap: 10px;
justify-content: space-around;
&--wrap {
flex-wrap: wrap;
}
* {
width: 100%;
}
}
.RV-FlexRow__Container {
@extend RV-FlexRow;
.RV-FlexRow__Item {
@include align-content;
}
}