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

26 lines
304 B
SCSS
Raw Normal View History

2020-08-21 17:20:29 +02:00
@mixin RV-FlexRow {
&__Container {
display: flex;
flex-direction: row;
justify-content: space-around;
2020-08-21 16:50:22 +02:00
2020-08-21 17:20:29 +02:00
&--wrap {
flex-wrap: wrap;
}
2020-08-21 16:50:22 +02:00
}
2020-08-21 17:20:29 +02:00
&__Item {
2020-08-21 16:50:22 +02:00
width: 100%;
2020-08-23 14:40:09 +02:00
@include RV-Alignment;
2020-08-23 14:43:34 +02:00
&--fixedSize {
flex: 0 0;
width: min-content;
}
2020-08-21 16:50:22 +02:00
}
}
2020-08-21 17:20:29 +02:00
.RV-FlexRow{
@include RV-FlexRow;
2020-08-21 16:50:22 +02:00
}