variables not working in modular sass

220 Views Asked by At

I am using a modular SASS that came with Underscores (which is a WordPress framework but not really relevant here). It is very similar to what you see with bootstrap less or sass where you have one simple file that has a plethora of @import statements.

My problem is when I run my grunt task (grunt-contrib-sass) on the core style.scss I get an error stating undefined variable: "$color__background-body" in line 32 of sass/layout/_reset.scss. But I do have that variable defined in the very first @import. I fix that one and then it just has an issue with the next variable, so it isn't seeing my variables.

I had this same problem in the past with using bootstrap-less using Koala compiler and ended up not using variables. But I would like to resolve this so if any of you have any ideas I would love to hear them!

You can find the files and structure here:

https://github.com/shellwe/Great-Plains-Landscaping-WP/tree/master/sass

Also, I understand a fix could be to have all my variables in my style.scss instead of in an @import statement but I would like to keep with the modular feel if possible.

Thanks!

0

There are 0 best solutions below