react-popover
react-popover copied to clipboard
How to disable animation ?
I'm very annoyed to the animation which is most of the time screwing up, Is there any way to stop it ? :/
Use this css to disable the animation
.Popover {
transform : translateY(0px) !important;
transition-duration: 0ms;
transition-property: transform !important;
.Popover-tip{
transition: -webkit-transform 0ms ease-in !important;
}
}
This could also be addressed by #61, i.e. you could override the animation props with no-ops.
This could also be addressed by #61, i.e. you could override the animation props with no-ops.
That's what I'd like to see ultimately. TBD.