scss-library/components/01_Layouts/fan/_fan.scss

17 lines
179 B
SCSS
Raw Normal View History

2020-08-21 17:51:22 +02:00
@mixin RV-Fan {
&__Container {
display: flex;
&--horizontal {
flex-direction: row;
}
&--vertical {
flex-direction: column;
}
}
}
.RV-Fan {
@include RV-Fan;
}