We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
transition: var(--something, var(--fallback))
var(--something, false(--fallback))
In JSS, which uses this plugin:
example: { transition: 'var(--something, var(--fallback))' }
gets converted to
.example-1-2-3 { transition: var(--something, false(--fallback)) }
Namely, the fallback var is being converted to false.
false
This issue is similar to #112
The text was updated successfully, but these errors were encountered:
Also
transition: box-shadow var(--animation-duration, 0.4s) var(--animation-easing, cubic-bezier(0.3, 0.3, 0.5, 1))
becomes
transition: box-shadow var(--animation-duration, 0.4s) var(--animation-easing, false(0.3, 0.3, 0.5, 1))
Sorry, something went wrong.
No branches or pull requests
In JSS, which uses this plugin:
gets converted to
Namely, the fallback var is being converted to
false
.This issue is similar to #112
The text was updated successfully, but these errors were encountered: