ℹ️ feat: Scrollable InfoHoverCard Content (#10693)

This commit is contained in:
Dustin Healy 2025-11-27 09:23:09 -08:00 committed by Danny Avila
parent 58f73626e7
commit 9fff229836
No known key found for this signature in database
GPG key ID: BF31EEB2C5CA0956

View file

@ -24,7 +24,7 @@ const InfoHoverCard = ({ side, text }: InfoHoverCardProps) => {
</HoverCardTrigger>
<HoverCardPortal>
<HoverCardContent side={side} className="z-[999] w-80">
<div className="space-y-2">
<div className="max-h-[80vh] space-y-2 overflow-y-auto">
<span className="text-sm text-text-secondary">{text}</span>
</div>
</HoverCardContent>