Skip to content
Snippets Groups Projects
Commit 5991891f authored by Andris Borbás's avatar Andris Borbás
Browse files

Fix email link on members

parent 19c12c7d
No related branches found
No related tags found
No related merge requests found
Pipeline #6059 passed with warnings
......@@ -30,13 +30,13 @@ export default function MemberCard({
{name}
</h4>
{email ?? (
{email && (
<a className="mb-0.5 hover:text-pink text-sm" href={`mailto:${email}`}>
{email}
</a>
)}
<p className="text-gray-600 font-RobotoMono text-xs lowercase">{title}</p>
<p className="text-gray-600 font-RobotoMono text-sm lowercase">{title}</p>
</figure>
);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment