-
Notifications
You must be signed in to change notification settings - Fork 439
Open
Description
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
Metadata
Metadata
Assignees
Labels
No labels