Skip to content
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

Style Autoprefixer broken for display: flex #382

Open
prakashgurung-lab49 opened this issue Jun 4, 2020 · 0 comments
Open

Style Autoprefixer broken for display: flex #382

prakashgurung-lab49 opened this issue Jun 4, 2020 · 0 comments

Comments

@prakashgurung-lab49
Copy link

Steps to reproduce the behavior:

<Carousel
     views={images}
     styles={{
         view: base => ({
             ...base,
             display: 'flex',
        })
    }}
/>

TLDR;
To fix, add space after flex to fix the issue but no prefix is added.
i.e display: 'flex '

Environment:
[email protected]
[email protected]

Expected style behavior:

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

Or

    display: flex;

Actual style behavior:

    display: -webkit-box,-moz-box,-ms-flexbox,-webkit-flex,flex;

invalid style

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant