Home › Forums › CSS › SCSS variable not working › Re: SCSS variable not working
June 26, 2013 at 2:58 pm
#140604
Participant
Ah ha! @hugogiraudel
I was using similar variables for other font-families and because I wasn’t using `#{$var}`, they were outputting `$var` in the CSS as well. Changing all of them to `#{$var}` fixed it.
Thank you!