Currently in the process of creating a blog with NuxtJS. You can find my repository here. Additionally, I have raised this issue on the Nuxt repository as well, which you can view here.
The main issue at hand revolves around loading style sheets in my configuration file.
css: [
'~./css/reset.css',
'~./css/vars.css',
'~./css/global.css',
'~./css/ui.css'
],
It appears that variables defined in one stylesheet cannot be accessed by others. The variables from vars.css do not carry over to global or ui.css.
Interestingly, it seems like only box-shadow properties are working across stylesheets, while other variables fail to do so.