1
0
mirror of synced 2025-12-23 21:07:12 -05:00

check for hover card hovering higher up in main-content (#36223)

This commit is contained in:
Robert Sese
2023-04-06 13:32:19 -05:00
committed by GitHub
parent 69f21454db
commit 5641e7bff7
2 changed files with 10 additions and 4 deletions

View File

@@ -23,7 +23,11 @@ export const ArticleGridLayout = ({ intro, topper, toc, children, className }: P
</SidebarContent>
)}
{intro && <Box gridArea="intro">{intro}</Box>}
{intro && (
<Box id="article-intro" gridArea="intro">
{intro}
</Box>
)}
<Box gridArea="content" data-search="article-body">
{children}