fix(templates): Add right border in header after website field with custom fields in Rhyhorn

This commit is contained in:
raymondyangdev
2024-11-05 17:35:14 +13:00
parent e29f973889
commit 700b98fcb7

View File

@ -124,7 +124,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}