Tooltip animation

Here is the code add this extra.less
CSS:
.tooltip--preview .tooltip-content-inner .bbWrapper {
    animation: XVtooltipScroll 3s linear;
    animation-fill-mode: forwards;
    animation-delay: 0.5s
}

@keyframes XVtooltipScroll {
    100% {
        transform: translateY(max(-50%, -400px))
    }
}
Scroll to Top