I am new to Less and have a problem about this ...
I have this code
// Mixin
.border(@width: 1px, @type: solid, @color:
border: @arguments;
}
// implementation
.class{
.border(
}
Is it possible to change only the @color parameter in the border mixin. When I set the value in @arguments, this does not give me the opportunity to change one of the parameters. Maybe there is a smarter way to code this ... Thanks
source
share