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
drop any --tw-* if another property with the same value exists
This way we don't have to hardcode the edge cases, but we have to make
sure that the same value exists _somewhere_.
We also make sure that the other property is also not a CSS variable.
Otherwise we would run into:
```css
.foo {
--tw-a: 1;
--tw-b: 1;
--tw-c: 1;
}
```
Because this would delete all the declarations
0 commit comments