Open DeDuckProject opened 7 years ago
I have a dir with: theme.st.css, colors.st.css
theme.st.css
colors.st.css
colors.st.css:
:vars{ primaryColor: #0074D9; }
and theme.st.css uses it like so:
:import{ -st-from: "./colors.st.css"; -st-named: primaryColor; }
and later using value(primaryColor). changes to color.st.css only take affect after running yarn start.
value(primaryColor)
yarn start
I have a dir with:
theme.st.css
,colors.st.css
colors.st.css
:and
theme.st.css
uses it like so:and later using
value(primaryColor)
. changes to color.st.css only take affect after runningyarn start
.