14 lines
206 B
SCSS
14 lines
206 B
SCSS
|
@mixin RV-ElementList {
|
||
|
&__Container {
|
||
|
list-style-type: none;
|
||
|
@include RV-Reset;
|
||
|
}
|
||
|
|
||
|
&__Item {
|
||
|
@include RV-Reset;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.RV-ElementList {
|
||
|
@include RV-ElementList;
|
||
|
}
|