I need to define a width in my SCSS code as so:
#example {
width: $currentWidth + 349 !important;
}
Where $currentWidth
is defined by the loop.
However, Sass always ends up concatenating the two numbers instead of doing the arithmetic.
I have also tried:
width: #{$currentWidth + 349}px !important;
Which still results in concatenation.
I'm wondering what I'm doing wrong? I know this is incredibly basic, but I also can't seem to find good information on how Sass handles arithmetic