Assuming I have the following mixin with following arguments:
.font-style(@size: 1.2em, @style: 100, @leading:1.4em, @color: #efefed)
Now I want to play this mixin passing the arguments that I define for a specific class. Ex:
.myClass{ .font-style(2.2em,...) }
Doubt : If I want to modify only the @size and @color arguments, I'd need to repeat the default (@arguments) of the order Ex:
.font-style( @==a -> "mudei valor", @==b "default", @==c "default", @==d -> "mudei valor )