-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
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
Prefixer removes multiple/fallback values #89
Comments
Yes, this happened when I was switching from |
If it worked in |
well |
Oh, didn't realize it was never published. Probably should remove it then until a failing test case can be added and bug resolved. |
@rtsao Are you talking about removing the array prefixing? I will have a look at that tomorrow. I believe we should keep array prefixing if possible :P |
I both fixed the array prefixing and also added array prefixing to the dynamic |
When specifying multiple values, like this:
{ position: [ 'fixed', 'sticky' ] }
only the first alternative is kept after prefixing:
{ position: 'fixed' }
The text was updated successfully, but these errors were encountered: