scss-library/components/01_Layouts/fullWidthContent/_fullWidthContent.scss

22 lines
408 B
SCSS
Raw Normal View History

2020-08-25 15:53:43 +02:00
@mixin RV-FullWidthContent__Container {
2020-12-27 16:00:24 +01:00
width: 100%;
2020-08-25 15:53:43 +02:00
}
@mixin RV-FullWidthContent__Item {
2020-12-27 16:00:24 +01:00
width: 100%;
@include RV-ContentCrop;
2020-08-25 15:53:43 +02:00
}
2020-12-27 16:00:24 +01:00
@mixin RV-FullWidthContent($-prefix: '&') {
#{$-prefix}__Container {
2020-08-25 15:53:43 +02:00
@include RV-FullWidthContent__Container;
2020-08-23 11:37:47 +02:00
}
2020-12-27 16:00:24 +01:00
#{$-prefix}__Item {
@include RV-FullWidthContent__Item;
2020-08-23 11:37:47 +02:00
}
}
.RV-FullWidthContent {
@include RV-FullWidthContent;
}