`transition: var(--something, var(--fallback))` gets converted to `var(--something, false(--fallback))`
Open
- Dominant language
- JavaScript
- Stars
- 67
- Forks
- 21
- PR merge metrics
- No merged PRs in 30d
Description
In JSS, which uses this plugin:
```javascript
example: {
transition: 'var(--something, var(--fallback))'
}
```
gets converted to
```css
.example-1-2-3 {
transition: var(--something, false(--fallback))
}
```
Namely, the fallback var is being converted to `false`.
This issue is similar to #112
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.