There's a slight issue that I'd like to circumvent.
$var: 30px;
font: 25px/25px font,font,font; //Works
font: ($var - 5)/($var - 5) font, font, font; //Works not
font: ($var - 5px)/($var - 5px) font, font, font; //Works not
margin: 0 0 20px 0; //Works
margin: 0 0 ($var - 10) 0; //Works not
margin: 0 0 ($var - 10px) 0; //Works not
Essentially, I'm dealing with a value in a variable being subtracted multiple times. The issue seems to arise from trying to divide both numbers using the slash.
I could handle it like this:
margin-top: 0;
margin-right: 0;
margin-bottom: ($var - 10px);
margin-left: 0;
However, this solution appears somewhat messy.