-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Description
- should check if
:root
is in the stylesheet already or not - should check if that existing
:root
has props already before injecting
:root {
--red: red;
}
p {
color: var(--blue);
}
should be:
:root {
--red: red;
--blue: blue;
}
p {
color: var(--blue);
}
not:
:root {
--red: red;
}
:root {
--blue: blue;
}
p {
color: var(--blue);
}
Metadata
Metadata
Assignees
Labels
No labels