I'm playing with Bulma and Astro and I'm having a weird error trying to overwrite a Bulma Sass variable.
```
[postcss] Found unknown node. Make sure to provided all involved nodes. Unknown node: "--color-100"
```
This is my `global.scss` file:
```
@use "sass:color";
@use "../../node_modules/bulma/sass";
$family-primary: 'system-ui, sans-serif'
```
(I tried earlier using `@use with` and got the same error)
I had disabled postcss on my `astro.config.mjs`:
```js
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
postcss: false,
});
```
What can be happening? Yes, I know is recognizing all the other variables but, do I have to disable postcss anywhere else? Any idea how can I avoid this error without checking every other Bulma variable?
Thank you!
#astro #css #postcss #bulma #webdev #frontend