Static GitHub Issues

[2121] Bulma sass variables

prev: Publish a new release candidate
next: Custom Server error page

Is there a way to use bulma sass variables from .vue files?

<style lang="sass" scoped>
    .section
        background-color: $grey-light
</style>

When I try to do so from vue files: Undefined variable: "$grey-light"

Bulma sass is loaded from nuxt.config.js

  css: [
    { src: '~/assets/css/main.sass', lang: 'sass' }, 
    { src: 'font-awesome/scss/font-awesome.scss', lang: 'scss' }
  ]

Using bulma classes works fine, but not the variables in specific .vue files...

<!--cmty--><!--cmty_prevent_hook--><div align="right"><sub><em>This question is available on <a href="https://nuxtjs.cmty.io">Nuxt.js</a> community (<a href="https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c1881">#c1881</a>)</em></sub></div>