-
Hi, I'm trying using this with https://ui.shadcn.com/docs/components/hover-card, however, the HoverCard be covered by next virtual item. Has anyone know how solve this? here is my code: <HoverCard>
<HoverCardTrigger>
<UserAvatar userName={names} className="w-4" />
</HoverCardTrigger>
<HoverCardContent className='z-50'>
<div>hhhh</div>
</HoverCardContent>
</HoverCard> Then this component are rendered as a list item in virtual. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Thanks for reaching out! It’s hard to pinpoint the issue without a full context. If you can provide a small, working example or a minimal reproduction of the problem, I'd be happy to take a closer look. |
Beta Was this translation helpful? Give feedback.
-
I had pretty similar solution, but it was on-click popup. I assume this is caused by absolute items position |
Beta Was this translation helpful? Give feedback.
-
I found this problem is caused by translateY, replace it with top can solve this problem: |
Beta Was this translation helpful? Give feedback.
I found this problem is caused by translateY, replace it with top can solve this problem: