-
Notifications
You must be signed in to change notification settings - Fork 61
Open
Labels
Description
Input
.bar {
--color: pink;
color: var(--color);
}
.bar:active {
--color: blue;
}
.bar:hover {
--color: red;
}
.bar:focus {
--color: green;
}
Expected
.bar {
color: pink;
}
.bar:active {
color: blue;
}
.bar:hover {
color: red;
}
.bar:focus {
color: green;
}
Will be transformed to (Actual)
😞
.bar {
color: pink;
}
.bar:focus {
color: green;
}
.bar:hover {
color: green;
}
.bar:active {
color: green;
}
t4t5, joshgillies and Pardoz