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
--value(…) usage is required in functional utilities
Otherwise if you don't do that:
```css
@Utility foo-* {
color: red;
}
```
Then `foo-a`, `foo-b`, and `foo-c` will resolve to:
```css
.foo-a {
color: red;
}
.foo-b {
color: red;
}
.foo-c {
color: red;
}
```
Which seems useless because this creates unnecessary duplicate CSS.
0 commit comments