More mixins

This commit is contained in:
2020-08-25 15:53:43 +02:00
parent 5ca1116e72
commit 11ef1c7cc8
2 changed files with 65 additions and 17 deletions

View File

@@ -1,11 +1,19 @@
@mixin RV-FullWidthContent__Container {
width: 100%;
}
@mixin RV-FullWidthContent__Item {
width: 100%;
@include RV-ContentCrop;
}
@mixin RV-FullWidthContent {
&__Container {
width: 100%;
@include RV-FullWidthContent__Container;
}
&__Item {
width: 100%;
@include RV-ContentCrop;
@include RV-FullWidthContent__Item;
}
}