You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is likely an issue with the inline-style-prefixer and it not considering how these properties are related when generating prefixes. Mind linking this to an issue on that repo?
Do you want to request a feature or report a bug?
A bug.
If the current behavior is a bug, please provide the steps to reproduce and
if a minimal demo of the problem via Glitch or similar (template:
https://glitch.com/edit/#!/react-native-web-playground).
StyleSheet
for styling and apply this classmyClass
transition-property: -webkit-transform, transform, opacity;
andtransition-timing-function: ease, step-end;
Here, both
ease
andstep-end
are applied totransform
:ease
via-webkit-transform
andstep-end
viatransform
.What is the expected behavior?
Expect that
ease
be applied totransform
andstep-end
be applied toopacity
The text was updated successfully, but these errors were encountered: