I want to assign 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 writing all classes one by one?