Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS SCSS variable not working Re: SCSS variable not working

#140604
chrisburton
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!