19 lines
379 B
SCSS
19 lines
379 B
SCSS
|
@mixin RV-ElementList__Item {
|
||
|
@include RV-FlexRow__Item;
|
||
|
}
|
||
|
|
||
|
@mixin RV-ElementList($-break_width: 500px, $prefix: '&') {
|
||
|
@include RV-FlexRow__Container;
|
||
|
@include RV-FlexRow__Container--shorthands;
|
||
|
@include RV-Reset;
|
||
|
|
||
|
list-style-type: none;
|
||
|
|
||
|
#{$prefix}__Item {
|
||
|
@include RV-ElementList__Item;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.RV-ElementList {
|
||
|
@include RV-ElementList;
|
||
|
}
|