Hi, I’m trying to override a css variable inside my custom.scss.liquid, but this results in an error
theme.liquid (where I add my file)
{{ 'custom.scss.css' | asset_url | stylesheet_tag }}
How I try to override the CSS variabels
:root {
--grid-desktop-horizontal-spacing: 10px;
--grid-desktop-vertical-spacing: 20px;
}
The error I get in the backend
Invalid CSS after " -": expected number or function, was “-grid-desktop-h…” at 2
How am I supposed to override the variables? Thanks!