I am attempting to build a blog using NuxtJS. My repo is here. I listed my problem as an issue on the Nuxt repo as well here.
Essentially the problem is this. In my config file I load in my style sheets.
css: [
'~./css/reset.css',
'~./css/vars.css',
'~./css/global.css',
'~./css/ui.css'
],
The problem seems to be that variables defined in one sheet can not be accessed by another. The variables defined in vars.css to not exist for global or ui.css
But what's even more strange but probably should be ignored, for now, it seems like just box-shadow seems to actually work. Every other variable doesn't.