refactor: remove broken link red highlight
All checks were successful
Deploy eolas-app / deploy (push) Successful in 1m7s

This commit is contained in:
Thomas Bishop 2025-12-22 18:31:19 +00:00
parent caef8ddf6b
commit e852772f56

View file

@ -43,7 +43,10 @@ export default function BodyLink({ link, children }) {
) )
} else } else
return ( return (
<a className="text-red-500 line-through" href={`/entries/${path}`}> <a
className="text-foreground underline-offset-4 underline hover:text-gray-700 dark:hover:text-green-300"
href={`/entries/${path}`}
>
{children} {children}
</a> </a>
) )