For example I have next less code
form.someForm
{
.form-group
{
> div
{
@media @wideMobile
{
width: calc(~"100%-144px");
}
}
> label
{
@media @wideMobile
{
width: 138px;
}
}
}
}
I want to write something like
form.someForm
{
.setWidths(138px,144px);
}
To get the same result. How can I do that?