ui: fix
This commit is contained in:
parent
2f8d0ee60c
commit
9c47b8495c
@ -50,14 +50,14 @@
|
||||
{#if $session.teamId === '0'}
|
||||
<div class="text-xl font-bold pb-5 -ml-10">Your Team's Applications</div>
|
||||
{/if}
|
||||
<div class="flex flex-col md:flex-row">
|
||||
<div class="flex flex-col md:flex-row flex-wrap">
|
||||
{#each ownApplications as application}
|
||||
<Application {application} />
|
||||
{/each}
|
||||
</div>
|
||||
{#if otherApplications.length > 0 && $session.teamId === '0'}
|
||||
<div class="text-xl font-bold pb-5 pt-10 -ml-10">Other Team's Applications</div>
|
||||
<div class="flex">
|
||||
<div class="flex flex-col md:flex-row flex-wrap">
|
||||
{#each otherApplications as application}
|
||||
<Application {application} />
|
||||
{/each}
|
||||
|
@ -55,7 +55,7 @@
|
||||
{#if $session.teamId === '0'}
|
||||
<div class="text-xl font-bold pb-5 -ml-10">Your Team's Databases</div>
|
||||
{/if}
|
||||
<div class="flex flex-col md:flex-row">
|
||||
<div class="flex flex-col md:flex-row flex-wrap">
|
||||
{#each ownDatabases as database}
|
||||
<a href="/databases/{database.id}" class="no-underline p-2 w-96">
|
||||
<div class="box-selection relative hover:bg-purple-600 group">
|
||||
@ -91,7 +91,7 @@
|
||||
</div>
|
||||
{#if otherDatabases.length > 0 && $session.teamId === '0'}
|
||||
<div class="text-xl font-bold pb-5 pt-10 -ml-10">Other Team's Databases</div>
|
||||
<div class="flex">
|
||||
<div class="flex flex-col md:flex-row flex-wrap">
|
||||
{#each otherDatabases as database}
|
||||
<a href="/databases/{database.id}" class="no-underline p-2 w-96">
|
||||
<div class="box-selection relative hover:bg-purple-600 group">
|
||||
|
@ -66,7 +66,7 @@
|
||||
{#if $session.teamId === '0'}
|
||||
<div class="text-xl font-bold pb-5 -ml-10">Your Team's Destinations</div>
|
||||
{/if}
|
||||
<div class="flex flex-col md:flex-row">
|
||||
<div class="flex flex-col md:flex-row flex-wrap">
|
||||
{#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">
|
||||
<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">
|
||||
{#each otherDestinations as destination}
|
||||
<a href="/destinations/{destination.id}" class="no-underline p-2 w-96">
|
||||
<div class="box-selection hover:bg-sky-600">
|
||||
|
@ -60,7 +60,7 @@
|
||||
{#if $session.teamId === '0'}
|
||||
<div class="text-xl font-bold pb-5 -ml-10">Your Team's Applications</div>
|
||||
{/if}
|
||||
<div class="flex flex-col md:flex-row">
|
||||
<div class="flex flex-col md:flex-row flex-wrap">
|
||||
{#each ownServices as service}
|
||||
<a href="/services/{service.id}" class="no-underline p-2 w-96">
|
||||
<div class="box-selection relative hover:bg-pink-600 group">
|
||||
@ -106,7 +106,7 @@
|
||||
</div>
|
||||
{#if otherServices.length > 0 && $session.teamId === '0'}
|
||||
<div class="text-xl font-bold pb-5 pt-10 -ml-10">Other Team's Applications</div>
|
||||
<div class="flex">
|
||||
<div class="flex flex-col md:flex-row flex-wrap">
|
||||
{#each otherServices as service}
|
||||
<a href="/services/{service.id}" class="no-underline p-2 w-96">
|
||||
<div class="box-selection relative hover:bg-pink-600 group">
|
||||
|
@ -64,7 +64,7 @@
|
||||
{#if $session.teamId === '0'}
|
||||
<div class="text-xl font-bold pb-5 -ml-10">Your Team's Applications</div>
|
||||
{/if}
|
||||
<div class="flex flex-col md:flex-row">
|
||||
<div class="flex flex-col md:flex-row flex-wrap">
|
||||
{#each ownSources as source}
|
||||
<a href="/sources/{source.id}" class="no-underline p-2 w-96">
|
||||
<div
|
||||
@ -91,7 +91,7 @@
|
||||
|
||||
{#if otherSources.length > 0 && $session.teamId === '0'}
|
||||
<div class="text-xl font-bold pb-5 pt-10 -ml-10">Other Team's Applications</div>
|
||||
<div class="flex">
|
||||
<div class="flex flex-col md:flex-row flex-wrap">
|
||||
{#each otherSources as source}
|
||||
<a href="/sources/{source.id}" class="no-underline p-2 w-96">
|
||||
<div
|
||||
|
@ -104,7 +104,7 @@
|
||||
<div class="flex flex-wrap justify-center">
|
||||
<div class="flex flex-col">
|
||||
<div class="-ml-10 pb-5 text-xl font-bold">Current Team</div>
|
||||
<div class="flex flex-col md:flex-row">
|
||||
<div class="flex flex-col flex-wrap md:flex-row">
|
||||
{#each ownTeams as team}
|
||||
<a href="/teams/{team.teamId}" class="w-96 p-2 no-underline">
|
||||
<div
|
||||
@ -124,7 +124,7 @@
|
||||
</div>
|
||||
|
||||
<div class="-ml-10 pb-5 pt-10 text-xl font-bold">Other Teams</div>
|
||||
<div class="flex">
|
||||
<div class="flex flex-col flex-wrap md:flex-row">
|
||||
{#each otherTeams as team}
|
||||
<a href="/teams/{team.teamId}" class="w-96 p-2 no-underline">
|
||||
<div
|
||||
|
Loading…
x
Reference in New Issue
Block a user