17 lines
179 B
SCSS
17 lines
179 B
SCSS
|
@mixin RV-Fan {
|
||
|
&__Container {
|
||
|
display: flex;
|
||
|
|
||
|
&--horizontal {
|
||
|
flex-direction: row;
|
||
|
}
|
||
|
|
||
|
&--vertical {
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.RV-Fan {
|
||
|
@include RV-Fan;
|
||
|
}
|