0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00

Fixed z-index issue

ref https://linear.app/tryghost/issue/AP-464/feed-view-refinements
This commit is contained in:
Djordje Vlaisavljevic 2024-10-22 14:04:59 +01:00
parent eb85af051f
commit ba43678964

View file

@ -479,7 +479,7 @@ const FeedItem: React.FC<FeedItemProps> = ({actor, object, layout, type, comment
<div dangerouslySetInnerHTML={({__html: stripHtml(object.content)})} className='ap-note-content w-full truncate text-[1.5rem] text-grey-700'></div>
</div>
{renderInboxAttachment(object)}
<div className='invisible absolute right-2 top-[9px] z-[9998] flex flex-col gap-2 rounded-lg bg-white p-2 shadow-md-heavy group-hover/article:visible'>
<div className='invisible absolute right-2 top-[9px] z-[49] flex flex-col gap-2 rounded-lg bg-white p-2 shadow-md-heavy group-hover/article:visible'>
<FeedItemStats
commentCount={comments.length}
layout={layout}