fix
All checks were successful
deploy to production / deploy (push) Successful in 35s

This commit is contained in:
Robin Grenzdörfer 2023-09-08 15:34:52 +00:00
parent 605ac82471
commit a5e1ede626
4 changed files with 10 additions and 4 deletions

View File

@ -48,7 +48,9 @@
<div class="lower"> <div class="lower">
<button>0711&nbsp;644&nbsp;700-0</button> <button>0711&nbsp;644&nbsp;700-0</button>
<button> <button>
<a href="mailto:info@fontis.de" class="button"> info@fontis.de </a> <a href="mailto:info@fontis.de" style="text-decoration: none;" class="button">
info@fontis.de
</a>
</button> </button>
</div> </div>
</div> </div>

View File

@ -44,7 +44,7 @@
</div> </div>
<div class="details"> <div class="details">
<em>{nE.title}</em> <em>{nE.title}</em>
<a href="{apiBaseURL}page/{pageId}/{nE.file.src}" download="{apiBaseURL}page/{pageId}/{nE.file.src}"> <a href="{apiBaseURL}page/{pageId}/{nE.file.src}" style="text-decoration: none;" download="{apiBaseURL}page/{pageId}/{nE.file.src}">
<button class="more">mehr</button></a <button class="more">mehr</button></a
> >
</div> </div>

View File

@ -37,7 +37,11 @@
<div class="content" class:closed="{i !== opened}"> <div class="content" class:closed="{i !== opened}">
{@html box.text} {@html box.text}
{#if box.emailButton} {#if box.emailButton}
<a href="mailto:info@fontis.de?subject={box.emailSubject || 'Bewerbung'}" class="button"> <a
href="mailto:info@fontis.de?subject={box.emailSubject || 'Bewerbung'}"
style="text-decoration: none;"
class="button"
>
<button> bewerben </button> <button> bewerben </button>
</a> </a>
{/if} {/if}

View File

@ -12,7 +12,7 @@
<div class="icons"> <div class="icons">
{#each col.icons as icon} {#each col.icons as icon}
<div class="icon"> <div class="icon">
<a href="{icon.link}" target="_blank"> <a href="{icon.link}" style="text-decoration: none;" target="_blank">
<img src="{`${apiBaseURL}page/${pageId}/${icon.icon?.src}`}" alt="img" /> <img src="{`${apiBaseURL}page/${pageId}/${icon.icon?.src}`}" alt="img" />
</a> </a>
</div> </div>