ensure requests aren't being made on hover

This commit is contained in:
vintro 2024-12-17 16:09:29 -05:00
parent bfb69d1afe
commit a5842bc192
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ export const PageList: QuartzComponent = ({ cfg, fileData, allFiles, limit }: Pr
)} )}
<div class="desc"> <div class="desc">
<h3> <h3>
<a href={resolveRelative(fileData.slug!, page.slug!)} class="internal"> <a href={resolveRelative(fileData.slug!, page.slug!)} class="internal" data-no-popover="true">
{title} {title}
</a> </a>
</h3> </h3>

View File

@ -653,7 +653,7 @@ input {
// Keep the hover effect // Keep the hover effect
&:hover { &:hover {
color: var(--secondary); color: var(--tertiary);
} }
} }
} }