This commit is contained in:
Andras Bacsai 2022-04-07 18:45:21 +02:00
parent 020013683b
commit aae108032c
4 changed files with 5 additions and 5 deletions

View File

@ -56,7 +56,7 @@
{/each} {/each}
</div> </div>
{#if otherApplications.length > 0 && $session.teamId === '0'} {#if otherApplications.length > 0 && $session.teamId === '0'}
<div class="text-xl font-bold pb-5 px-1 pt-10">Other Team's Applications</div> <div class="text-xl font-bold pb-5 px-1 pt-10 px-6">Other Team's Applications</div>
<div class="flex flex-col md:flex-row flex-wrap px-2 justify-center"> <div class="flex flex-col md:flex-row flex-wrap px-2 justify-center">
{#each otherApplications as application} {#each otherApplications as application}
<Application {application} /> <Application {application} />

View File

@ -90,7 +90,7 @@
{/each} {/each}
</div> </div>
{#if otherDatabases.length > 0 && $session.teamId === '0'} {#if otherDatabases.length > 0 && $session.teamId === '0'}
<div class="text-xl font-bold pb-5 px-1 pt-10">Other Team's Databases</div> <div class="text-xl font-bold pb-5 px-1 pt-10 px-6">Other Team's Databases</div>
<div class="flex flex-col md:flex-row flex-wrap px-2 justify-center"> <div class="flex flex-col md:flex-row flex-wrap px-2 justify-center">
{#each otherDatabases as database} {#each otherDatabases as database}
<a href="/databases/{database.id}" class="no-underline p-2 w-96"> <a href="/databases/{database.id}" class="no-underline p-2 w-96">

View File

@ -81,7 +81,7 @@
</div> </div>
{#if otherDestinations.length > 0 && $session.teamId === '0'} {#if otherDestinations.length > 0 && $session.teamId === '0'}
<div class="text-xl font-bold pb-5 px-1 pt-10">Other Team's Destinations</div> <div class="text-xl font-bold pb-5 px-1 pt-10 px-6">Other Team's Destinations</div>
<div class="flex flex-col md:flex-row flex-wrap px-2 justify-center"> <div class="flex flex-col md:flex-row flex-wrap px-2 justify-center">
{#each otherDestinations as destination} {#each otherDestinations as destination}
<a href="/destinations/{destination.id}" class="no-underline p-2 w-96"> <a href="/destinations/{destination.id}" class="no-underline p-2 w-96">

View File

@ -103,7 +103,7 @@
{/if} {/if}
<div class="flex flex-wrap justify-center"> <div class="flex flex-wrap justify-center">
<div class="flex flex-col"> <div class="flex flex-col">
<div class=" pb-5 text-xl font-bold">Current Team</div> <div class=" px-6 pb-5 text-xl font-bold">Current Team</div>
<div class="flex flex-col flex-wrap justify-center px-2 md:flex-row"> <div class="flex flex-col flex-wrap justify-center px-2 md:flex-row">
{#each ownTeams as team} {#each ownTeams as team}
<a href="/teams/{team.teamId}" class="w-96 p-2 no-underline"> <a href="/teams/{team.teamId}" class="w-96 p-2 no-underline">
@ -123,7 +123,7 @@
{/each} {/each}
</div> </div>
<div class=" pb-5 pt-10 text-xl font-bold">Other Teams</div> <div class="px-6 pb-5 pt-10 text-xl font-bold">Other Teams</div>
<div class="flex flex-col flex-wrap justify-center px-2 md:flex-row"> <div class="flex flex-col flex-wrap justify-center px-2 md:flex-row">
{#each otherTeams as team} {#each otherTeams as team}
<a href="/teams/{team.teamId}" class="w-96 p-2 no-underline"> <a href="/teams/{team.teamId}" class="w-96 p-2 no-underline">