ui: fixes

This commit is contained in:
Andras Bacsai
2022-04-07 15:50:57 +02:00
parent 9c47b8495c
commit eb2e07afc5
6 changed files with 25 additions and 25 deletions

View File

@@ -64,9 +64,9 @@
{:else}
<div class="flex flex-col">
{#if $session.teamId === '0'}
<div class="text-xl font-bold pb-5 -ml-10">Your Team's Destinations</div>
<div class="text-xl font-bold pb-5">Your Team's Destinations</div>
{/if}
<div class="flex flex-col md:flex-row flex-wrap">
<div class="flex flex-col md:flex-row flex-wrap px-2 justify-center">
{#each ownDestinations as destination}
<a href="/destinations/{destination.id}" class="no-underline p-2 w-96">
<div class="box-selection hover:bg-sky-600">
@@ -81,8 +81,8 @@
</div>
{#if otherDestinations.length > 0 && $session.teamId === '0'}
<div class="text-xl font-bold pb-5 pt-10 -ml-10">Other Team's Destinations</div>
<div class="flex flex-col md:flex-row flex-wrap">
<div class="text-xl font-bold pb-5 pt-10">Other Team's Destinations</div>
<div class="flex flex-col md:flex-row flex-wrap px-2 justify-center">
{#each otherDestinations as destination}
<a href="/destinations/{destination.id}" class="no-underline p-2 w-96">
<div class="box-selection hover:bg-sky-600">