Whilst composing the subsequent operations
@a: 2px
@variable: @a + 5;
.margin-style{
margin-left: @variable;
}
The code above compiles into
.margin-style{
margin-left: 2px + 5;
}
Rather than
margin-left:7px;
What could be causing this issue?