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

58 lines
683 B
SCSS
Raw Normal View History

2020-08-23 19:20:11 +02:00
@mixin RV-FlexRow__Container {
display: flex;
flex-direction: row;
justify-content: space-around;
&--multiRow {
flex-wrap: wrap;
}
}
@mixin RV-FlexRow__Item {
@include RV-Alignment;
&,&--normal {
flex-grow: 3;
flex-shrink: 3;
}
&--narrower {
flex-grow: 1;
flex-shrink: 5;
}
&--narrow {
flex-grow: 2;
flex-shrink: 4;
}
&--wide {
flex-grow: 4;
flex-shrink: 2;
}
&--wider {
flex-grow: 5;
flex-shrink: 1;
}
&--fixedSize {
flex-grow: 0;
flex-shrink: 0;
width: min-content;
}
}
2020-08-21 17:20:29 +02:00
@mixin RV-FlexRow {
&__Container {
2020-08-23 19:20:11 +02:00
@include RV-FlexRow__Container;
2020-08-21 16:50:22 +02:00
}
2020-08-21 17:20:29 +02:00
&__Item {
2020-08-23 19:20:11 +02:00
@include RV-FlexRow__Item;
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
}