Merge pull request #2091 from raymondyangdev/main

fix(templates): Add right border after website in Rhyhorn
This commit is contained in:
Amruth Pillai
2025-01-12 15:38:54 +01:00
committed by GitHub

View File

@ -125,7 +125,7 @@ const Link = ({ url, icon, iconOnRight, label, className }: LinkProps) => {
if (!isUrl(url.href)) return null;
return (
<div className="flex items-center gap-x-1.5">
<div className="flex items-center gap-x-1.5 border-r pr-2 last:border-r-0 last:pr-0">
{!iconOnRight && (icon ?? <i className="ph ph-bold ph-link text-primary" />)}
<a
href={url.href}