20 lines
243 B
SCSS
20 lines
243 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;
|
|
}
|
|
}
|
|
|
|
.RV-FlexRow{
|
|
@include RV-FlexRow;
|
|
} |