Skip to content

Commit

Permalink
chore: button layout
Browse files Browse the repository at this point in the history
  • Loading branch information
m-krebs committed Dec 10, 2024
1 parent 1a4c84a commit ffd1dd9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/routes/kontakt/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@

<div>
<h4 class="mb-3 text-xl font-semibold underline decoration-primary decoration-1 underline-offset-3">Social Media</h4>
<div class="flex flex-col gap-2">
<div class="flex flex-col items-center gap-2">
{#each contactPage.social_media as socialMedia}
<div>
<a href={socialMedia.url} target="_blank" class="">
<img src={PUBLIC_STRAPI_HOST + socialMedia.icon.formats.small.url} alt={socialMedia.name} class="h-4 inline mb-1 mr-2" />
<a href={socialMedia.url} target="_blank" class="items-center flex">
<img src={PUBLIC_STRAPI_HOST + socialMedia.icon.formats.small.url} alt={socialMedia.name} class="h-4 inline mr-2" />
<span class="hover:underline hover:decoration-primary"> {socialMedia.name}</span>
</a>
</div>
Expand Down

0 comments on commit ffd1dd9

Please sign in to comment.