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