From 4642b322714fb25ac89d3cade8479c4d092a320b Mon Sep 17 00:00:00 2001 From: Peter Meier Date: Thu, 4 Jun 2026 10:54:44 +0200 Subject: [PATCH] refactor: Adressbuch-Kontaktinfo als Text mit Icon-Button statt vollem Button Co-Authored-By: Claude Sonnet 4.6 --- .../components/blocks/AdressbuchBlock.svelte | 40 ++++++++++--------- 1 file changed, 22 insertions(+), 18 deletions(-) diff --git a/src/lib/components/blocks/AdressbuchBlock.svelte b/src/lib/components/blocks/AdressbuchBlock.svelte index d93a597..3a0971b 100644 --- a/src/lib/components/blocks/AdressbuchBlock.svelte +++ b/src/lib/components/blocks/AdressbuchBlock.svelte @@ -144,28 +144,32 @@ {/if} - + {#if contact.phone || contact.email} -
+
{#if contact.phone} - - - {contact.phone} - +
+ {contact.phone} + + + +
{/if} {#if contact.email} - - - {contact.email} - +
+ {contact.email} + + + +
{/if}
{/if}