#front-hello {
padding: 20vh 0 1vh;
.front-hello-slider {
position: relative;
top: -1.5vw;
.slider-vertical-item {
margin-bottom: 2.3vw;
}
img {
width: 53px;
}
}
}
@mixin my-mixin($classname, $anotherClassname) {
padding: 20vh 0 1vh;
#{$classname} {
position: relative;
top: -1.5vw;
#{$anotherClassname} {
margin-bottom: 2.3vw;
}
img {
width: 53px;
}
}
}
#front-hello {
@include my-mixin('.front-hello-slider','.slider-vertical-item');
}
#back-hello {
@include my-mixin('.back-hello-slider','.slider-vertical-item');
}