fix: add underline on podcast link hover

This commit is contained in:
2024-04-21 01:32:05 +02:00
parent 52c9aebbaf
commit 5062b68d98

View File

@@ -30,7 +30,11 @@ export function PodcastInfoCard({
</Wrap> </Wrap>
</div> </div>
<div className={"border-b px-2 py-4"}> <div className={"border-b px-2 py-4"}>
<Wrap if={shouldWrapWithLink} with={Link} wrapperProps={{ to: href }}> <Wrap
if={shouldWrapWithLink}
with={Link}
wrapperProps={{ to: href, className: "hover:underline" }}
>
<strong className={"block"}>{title}</strong> <strong className={"block"}>{title}</strong>
<em className={"text-sm"}>by {author}</em> <em className={"text-sm"}>by {author}</em>
</Wrap> </Wrap>