Skip to content
Snippets Groups Projects
Commit af1955e7 authored by Jürgen Voskuhl's avatar Jürgen Voskuhl
Browse files

Increase margin after lines in contact info

parent a3e0a07f
No related branches found
No related tags found
1 merge request!86planning#1203: Standards
Pipeline #56343 waiting for manual action
......@@ -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`}>&thinsp;&thinsp;&thinsp;Telefon</div>
<div>
<Link href = {'tel:' + contact.phone}>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment