StatusHoverCard: ahh, I understand the z-index issue

This commit is contained in:
Alex Gleason 2022-06-20 17:28:59 -05:00
parent c78e398dad
commit 01e643e4f6
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -79,7 +79,7 @@ export const StatusHoverCard: React.FC<IStatusHoverCard> = ({ visible = true })
return (
<div
className={classNames({
'absolute transition-opacity w-[500px] z-[100] top-0 left-0': true,
'absolute transition-opacity w-[500px] z-50 top-0 left-0': true,
'opacity-100': visible,
'opacity-0 pointer-events-none': !visible,
})}