I want to asign several @mixins to classes with the same name, something like:
@each $herramienta in $listaHerramientas {
.#{$herramienta} {
@include #{$herramienta};
}
}
The compiler throws the error Expected identifier
, which seems to mean the @include does not admit variables. Is that right? Is there a way to avoid writting all classes one by one?