From af1955e7745199209bfa8facb41c4a1cf9ed3d57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Voskuhl?= <juergen.voskuhl@itcv-software.com> Date: Sat, 30 Sep 2023 21:37:53 +0200 Subject: [PATCH] Increase margin after lines in contact info --- components/it-standards/ContactInfoSingle.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/it-standards/ContactInfoSingle.tsx b/components/it-standards/ContactInfoSingle.tsx index 3f12da2..39ce83f 100644 --- a/components/it-standards/ContactInfoSingle.tsx +++ b/components/it-standards/ContactInfoSingle.tsx @@ -47,18 +47,18 @@ export function ContactInfoSingle({ contactType, contact }: ContactInfoSingleOpt {/* organisation row */} { contact.link != '' - ? <div> + ? <div className="leading-5 mb-2"> <Link href = {contact.link} target="_blank" rel="noopener noreferrer"> {contact.name} </Link> </div> - : <div>{contact.name}</div> + : <div className="leading-5 mb-2">{contact.name}</div> } {/* E-Mail row */} { contact.mail != '' - ? <div className="flex"> + ? <div className="flex leading-5 mb-2"> <div className={`${MY_CONSTANTS.INFOBOX_1ST_COLUMN_WIDTH} font-semibold`}>📧 E-Mail</div> <div> <Link href = {'mailto:' + contact.mail}> @@ -72,7 +72,7 @@ export function ContactInfoSingle({ contactType, contact }: ContactInfoSingleOpt {/* Phone no. */} { contact.phone != '' - ? <div className="flex"> + ? <div className="flex leading-5 mb-2"> <div className={`${MY_CONSTANTS.INFOBOX_1ST_COLUMN_WIDTH} font-semibold`}> ☎   Telefon</div> <div> <Link href = {'tel:' + contact.phone}> -- GitLab