ui: fixes

This commit is contained in:
Andras Bacsai 2022-08-26 18:56:05 +00:00
parent 570b286ef9
commit 463fee429b
2 changed files with 7 additions and 7 deletions

View File

@ -4,6 +4,6 @@
<img <img
alt="minio logo" alt="minio logo"
class={isAbsolute ? 'w-7 h-7 absolute top-0 left-0 -m-3 -mt-5' : 'w-4 h-4 mx-auto'} class={isAbsolute ? 'w-7 h-12 absolute top-0 left-0 -m-3 -mt-5' : 'w-4 h-8 mx-auto'}
src="/minio.png" src="/minio.png"
/> />

View File

@ -99,7 +99,7 @@
<div class="w-full flex flex-row"> <div class="w-full flex flex-row">
<ApplicationsIcons {application} isAbsolute={true} /> <ApplicationsIcons {application} isAbsolute={true} />
<div class="w-full flex flex-col"> <div class="w-full flex flex-col">
<h1 class="font-bold text-xl truncate"> <h1 class="font-bold text-lg lg:text-sm truncate">
{application.name} {application.name}
{#if application.settings.isBot} {#if application.settings.isBot}
<span class="text-xs">BOT</span> <span class="text-xs">BOT</span>
@ -184,7 +184,7 @@
<div class="w-full flex flex-row"> <div class="w-full flex flex-row">
<ServiceIcons type={service.type} isAbsolute={true} /> <ServiceIcons type={service.type} isAbsolute={true} />
<div class="w-full flex flex-col"> <div class="w-full flex flex-col">
<h1 class="font-bold text-xl truncate">{service.name}</h1> <h1 class="font-bold text-lg lg:text-sm truncate">{service.name}</h1>
<div class="h-10"> <div class="h-10">
{#if service?.fqdn} {#if service?.fqdn}
<h2>{service?.fqdn.replace('https://', '').replace('http://', '')}</h2> <h2>{service?.fqdn.replace('https://', '').replace('http://', '')}</h2>
@ -239,14 +239,14 @@
<span class="indicator-item badge bg-error badge-xs" /> <span class="indicator-item badge bg-error badge-xs" />
{/if} {/if}
{/await} {/await}
<div class="w-full flex flex-row pt-2"> <div class="w-full flex flex-row">
<DatabaseIcons type={database.type} isAbsolute={true} /> <DatabaseIcons type={database.type} isAbsolute={true} />
<div class="w-full flex flex-col"> <div class="w-full flex flex-col">
<div class="h-10"> <div class="h-10">
<h1 class="font-bold text-xl truncate">{database.name}</h1> <h1 class="font-bold text-lg lg:text-sm truncate">{database.name}</h1>
<div class="h-10"> <div class="h-10">
{#if database?.version} {#if database?.version}
<h2>{database?.version}</h2> <h2 class="text-xs">{database?.version}</h2>
{:else} {:else}
<h2 class="text-red-500">Not configured</h2> <h2 class="text-red-500">Not configured</h2>
{/if} {/if}