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

67 lines
1.4 KiB
SCSS
Raw Normal View History

2020-08-23 14:39:45 +02:00
@mixin RV-Fan--horizontal($-base_height, $-base_width, $-suffix: '') {
&__Container#{$-suffix} {
flex-direction: row;
}
2020-08-21 17:51:22 +02:00
2020-08-23 14:39:45 +02:00
&__Container#{$-suffix} &__Surface {
min-width: $-base_width;
height: $-base_height;
}
}
2020-08-21 17:51:22 +02:00
2020-08-23 14:39:45 +02:00
@mixin RV-Fan--vertical($-base_height, $-base_width, $-suffix: '') {
&__Container#{$-suffix} {
flex-direction: column;
width:max-content;
2020-08-21 17:51:22 +02:00
}
2020-08-23 11:35:03 +02:00
2020-08-23 14:39:45 +02:00
&__Container#{$-suffix} &__Surface {
width: $-base_width;
min-height: $-base_height;
2020-08-23 11:35:03 +02:00
}
2020-08-23 14:39:45 +02:00
}
2020-08-23 11:35:03 +02:00
2020-08-23 14:39:45 +02:00
@mixin RV-Fan--auto($-base_height, $-base_width, $-suffix: '') {
&__Container#{$-suffix} {
flex-flow: row wrap;
}
&__Container#{$-suffix} &__Surface {
width: calc(100% - #{$-base_width});
min-width: $-base-width;
height: $-base_height;
2020-08-23 11:35:03 +02:00
}
2020-08-23 14:39:45 +02:00
}
@mixin RV-Fan--fullWidth($-base_height, $-base_width, $-suffix: '') {
&__Container#{$-suffix} &__Base, &__Container#{$-suffix} &__Surface {
flex-grow: 1;
}
}
2020-08-23 11:35:03 +02:00
2020-08-23 14:39:45 +02:00
@mixin RV-Fan ($-base_height, $-base_width) {
@include RV-Fan--vertical($-base_height, $-base_width, '--vertical');
@include RV-Fan--horizontal($-base_height, $-base_width, '--horizontal');
@include RV-Fan--auto($-base_height, $-base_width, '--auto');
@include RV-Fan--fullWidth($-base_height, $-base_width, '--fullWidth');
&__Container {
display: flex;
2020-08-23 11:35:03 +02:00
}
2020-08-23 14:39:45 +02:00
&__Base {
height: $-base_height;
width: $-base_width;
flex: 0 0 auto;
}
&__Surface {
@include RV-ContentCrop;
2020-08-23 11:35:03 +02:00
}
2020-08-21 17:51:22 +02:00
}
.RV-Fan {
2020-08-23 11:35:03 +02:00
@include RV-Fan(280px, 320px);
2020-08-21 17:51:22 +02:00
}