react-tippy
react-tippy copied to clipboard
How the instant example can be triggered? Delay on Popup to disappear.
IM getting delay to have the popup to disappear
I had the same issue. As a temporary workaround I found out that you need to explicitly reset transition-duration
on both elements.
React element:
<Tooltip
animation="none"
animateFill={false}
>
Global style rule:
.tippy-tooltip, .tippy-popper {
transition-duration: 0s !important;
}
https://github.com/tvkhoa/react-tippy/issues/52#issuecomment-406419701