scss-library/components/01_Layouts/fan/_fan.scss
2020-08-21 17:51:22 +02:00

17 lines
179 B
SCSS

@mixin RV-Fan {
&__Container {
display: flex;
&--horizontal {
flex-direction: row;
}
&--vertical {
flex-direction: column;
}
}
}
.RV-Fan {
@include RV-Fan;
}