When we attach the !important keyword to a mixin call, the Less compiler will automatically add the !important to all properties that are present within the mixin.
For example, consider the below mixin:
.set-default-props() {
margin: 4px;
padding: 4px;
border: 1px solid black;
font-wei...