fix: align relay links in text

This commit is contained in:
Alejandro Gómez
2026-03-31 19:00:41 +02:00
parent 32f7d1b531
commit d24b33ef7d

View File

@@ -12,9 +12,9 @@ export function Relay({ node }: RelayNodeProps) {
return (
<RelayLink
url={node.url}
className="inline-flex underline decoration-dotted cursor-crosshair hover:text-foreground"
className="inline-flex underline decoration-dotted cursor-crosshair hover:text-foreground [&>div]:items-baseline"
urlClassname="text-[length:inherit]"
iconClassname="size-3.5"
iconClassname="size-3.5 self-center"
/>
);
}