My LESS styles look like the following code snippet. I am wondering if there is a way in LESS to handle this scenario more efficiently without repeating the class name for each parent element.
span {
.zero {
color: #fff;
}
}
div {
.zero {
color: #389c40;
}
}