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

22 lines
365 B
SCSS
Raw Normal View History

2020-08-25 15:53:43 +02:00
@mixin RV-FullWidthContent__Container {
width: 100%;
}
@mixin RV-FullWidthContent__Item {
width: 100%;
@include RV-ContentCrop;
}
2020-08-23 11:37:47 +02:00
@mixin RV-FullWidthContent {
&__Container {
2020-08-25 15:53:43 +02:00
@include RV-FullWidthContent__Container;
2020-08-23 11:37:47 +02:00
}
&__Item {
2020-08-25 15:53:43 +02:00
@include RV-FullWidthContent__Item;
2020-08-23 11:37:47 +02:00
}
}
.RV-FullWidthContent {
@include RV-FullWidthContent;
}