3
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 I define to a specific class. Ex:
.myClass{ .font-style(2.2em,...) }
Doubt: If I only want to modify the argument @size and @color, I would need to repeat the default (@Arguments) on account of the Ex order:
.font-style( @==a -> "mudei valor", @==b "default", @==c "default", @==d -> "mudei valor )