cssinjs / cssinjs/css-vendor

`transition: var(--something, var(--fallback))` gets converted to `var(--something, false(--fallback))`

Open
#244 1 comment 5 reactions 0 assignees View on GitHub
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.