You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of the important feature of css-vars is ability to re-define value of existed css variable. Lets assume I need to rewrite --base-bg: #fff;
So when I type -- I'm expecting to see list of vars
button {
--base-bg:#fff;
background:var(--base-bg); /* intellisense suggests css-var here - it worksF */
}
.customButton {
--base-bg:#efefefe; /* when I type --b intellisense-list is empty; but expected the same behavior as above */
}
The text was updated successfully, but these errors were encountered:
One of the important feature of css-vars is ability to re-define value of existed css variable. Lets assume I need to rewrite
--base-bg: #fff;
So when I type
--
I'm expecting to see list of varsThe text was updated successfully, but these errors were encountered: