ui: fix
This commit is contained in:
@@ -58,7 +58,7 @@
|
||||
{:else}
|
||||
<div class="flex flex-col">
|
||||
{#if $session.teamId === '0' && ownServices.length > 0 && otherServices.length > 0}
|
||||
<div class="text-xl font-bold pb-5 px-1">Current Team</div>
|
||||
<div class="text-xl font-bold pb-5 px-6">Current Team</div>
|
||||
{/if}
|
||||
<div class="flex flex-col md:flex-row flex-wrap px-2 justify-center">
|
||||
{#each ownServices as service}
|
||||
@@ -91,7 +91,7 @@
|
||||
{service.name}
|
||||
</div>
|
||||
{#if $session.teamId === '0'}
|
||||
<div class="text-center truncate">Team {service.teams[0].name}</div>
|
||||
<div class="text-center truncate">{service.teams[0].name}</div>
|
||||
{/if}
|
||||
{#if !service.type || !service.fqdn}
|
||||
<div class="font-bold text-center truncate text-red-500 group-hover:text-white">
|
||||
@@ -105,7 +105,7 @@
|
||||
{/each}
|
||||
</div>
|
||||
{#if otherServices.length > 0 && $session.teamId === '0'}
|
||||
<div class="text-xl font-bold pb-5 pt-10 px-6">Other Team's</div>
|
||||
<div class="text-xl font-bold pb-5 pt-10 px-6">Others</div>
|
||||
<div class="flex flex-col md:flex-row flex-wrap px-2 justify-center">
|
||||
{#each otherServices as service}
|
||||
<a href="/services/{service.id}" class="no-underline p-2 w-96">
|
||||
@@ -137,7 +137,7 @@
|
||||
{service.name}
|
||||
</div>
|
||||
{#if $session.teamId === '0'}
|
||||
<div class="text-center truncate">Team {service.teams[0].name}</div>
|
||||
<div class="text-center truncate">{service.teams[0].name}</div>
|
||||
{/if}
|
||||
{#if !service.type || !service.fqdn}
|
||||
<div class="font-bold text-center truncate text-red-500 group-hover:text-white">
|
||||
|
Reference in New Issue
Block a user