22 lines
408 B
SCSS
22 lines
408 B
SCSS
@mixin RV-FullWidthContent__Container {
|
|
width: 100%;
|
|
}
|
|
|
|
@mixin RV-FullWidthContent__Item {
|
|
width: 100%;
|
|
@include RV-ContentCrop;
|
|
}
|
|
|
|
@mixin RV-FullWidthContent($-prefix: '&') {
|
|
#{$-prefix}__Container {
|
|
@include RV-FullWidthContent__Container;
|
|
}
|
|
|
|
#{$-prefix}__Item {
|
|
@include RV-FullWidthContent__Item;
|
|
}
|
|
}
|
|
|
|
.RV-FullWidthContent {
|
|
@include RV-FullWidthContent;
|
|
} |