I cant find the answer on why is this bothering SCSS, i want to multiply something (number) with unit in "em" with a number without a unit, for example:
1.5em * 2
this returns an error "Error: Undefined operation: "1.5em times 2"". I'm coming for LESS where this kind of multiplying is normal.
I was also having a problem with this kind of multiplication:
1.5 * 1em
Compiler was throwing the same error as above, but i fixed the problem with this:
1.5 + em
Is this solution good? Its passing through compiler but i cant apply the same fix for 1.5em * 2