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
{{ message }}
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.
When trying to use CSS variables the linter constantly displays the error "Expected RBRACE at line number, col number"
example CSS;
:root
{
/* these variables flag errors -> "Expected RBRACE at line number, col number"*/
--primaryColour: #23d5ab;
--secondaryColour: #17a2b8;
}
.example
{
background-color: Black;
/*this line displayes error -> " Expected color but found 'var(--primaryColour)" */
color: var(--primaryColour);
}
The text was updated successfully, but these errors were encountered: