fix(routes): more ui tweaks
This commit is contained in:
		@@ -44,8 +44,10 @@
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
</script>
 | 
					</script>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<div class="flex space-x-1 p-6 font-bold">
 | 
					<nav
 | 
				
			||||||
	<div class="mr-4 text-2xl">{$t('index.applications')}</div>
 | 
						class="flex flex-row px-4 justify-between items-center bg-neutral-focus lg:fixed w-full z-10 lg:-ml-16 lg:pl-20 p-5"
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
						<h1 class="mr-4 text-2xl font-bold">{$t('index.applications')}</h1>
 | 
				
			||||||
	{#if $appSession.isAdmin}
 | 
						{#if $appSession.isAdmin}
 | 
				
			||||||
		<button on:click={newApplication} class="btn btn-square btn-sm bg-applications">
 | 
							<button on:click={newApplication} class="btn btn-square btn-sm bg-applications">
 | 
				
			||||||
			<svg
 | 
								<svg
 | 
				
			||||||
@@ -63,8 +65,9 @@
 | 
				
			|||||||
			>
 | 
								>
 | 
				
			||||||
		</button>
 | 
							</button>
 | 
				
			||||||
	{/if}
 | 
						{/if}
 | 
				
			||||||
</div>
 | 
					</nav>
 | 
				
			||||||
<div class="flex-col justify-center mt-10 pb-12 sm:pb-16">
 | 
					<br />
 | 
				
			||||||
 | 
					<div class="flex flex-col justify-center mt-10 pb-12 lg:pt-16 sm:pb-16">
 | 
				
			||||||
	{#if !applications || ownApplications.length === 0}
 | 
						{#if !applications || ownApplications.length === 0}
 | 
				
			||||||
		<div class="flex-col">
 | 
							<div class="flex-col">
 | 
				
			||||||
			<div class="text-center text-xl font-bold">{$t('application.no_applications_found')}</div>
 | 
								<div class="text-center text-xl font-bold">{$t('application.no_applications_found')}</div>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -42,8 +42,11 @@
 | 
				
			|||||||
	});
 | 
						});
 | 
				
			||||||
</script>
 | 
					</script>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<div class="flex space-x-1 p-6 font-bold">
 | 
					<nav
 | 
				
			||||||
	<div class="mr-4 text-2xl tracking-tight">{$t('index.databases')}</div>
 | 
						class="flex flex-row px-4 justify-between items-center bg-neutral-focus lg:fixed w-full z-10 lg:-ml-16 lg:pl-20 p-5"
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
						<h1 class="mr-4 text-2xl font-bold">{$t('index.databases')}</h1>
 | 
				
			||||||
 | 
						{#if $appSession.isAdmin}
 | 
				
			||||||
	<button on:click={newDatabase} class="btn btn-square btn-sm bg-databases">
 | 
						<button on:click={newDatabase} class="btn btn-square btn-sm bg-databases">
 | 
				
			||||||
		<svg
 | 
							<svg
 | 
				
			||||||
			class="h-6 w-6"
 | 
								class="h-6 w-6"
 | 
				
			||||||
@@ -59,9 +62,10 @@
 | 
				
			|||||||
			/></svg
 | 
								/></svg
 | 
				
			||||||
		>
 | 
							>
 | 
				
			||||||
	</button>
 | 
						</button>
 | 
				
			||||||
</div>
 | 
						{/if}
 | 
				
			||||||
 | 
					</nav>
 | 
				
			||||||
<div class="flex-col justify-center mt-10 pb-12 sm:pb-16">
 | 
					<br />
 | 
				
			||||||
 | 
					<div class="flex-col justify-center mt-10 pb-12 sm:pb-16 lg:pt-16">
 | 
				
			||||||
	{#if !databases || ownDatabases.length === 0}
 | 
						{#if !databases || ownDatabases.length === 0}
 | 
				
			||||||
		<div class="flex-col">
 | 
							<div class="flex-col">
 | 
				
			||||||
			<div class="text-center text-xl font-bold">{$t('database.no_databases_found')}</div>
 | 
								<div class="text-center text-xl font-bold">{$t('database.no_databases_found')}</div>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -36,8 +36,10 @@
 | 
				
			|||||||
	});
 | 
						});
 | 
				
			||||||
</script>
 | 
					</script>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<div class="flex space-x-1 p-6 font-bold">
 | 
					<nav
 | 
				
			||||||
	<div class="mr-4 text-2xl tracking-tight">{$t('index.destinations')}</div>
 | 
						class="flex flex-row px-4 justify-between items-center bg-neutral-focus lg:fixed w-full z-10 lg:-ml-16 lg:pl-20 p-5"
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
						<h1 class="mr-4 text-2xl font-bold">{$t('index.destinations')}</h1>
 | 
				
			||||||
	{#if $appSession.isAdmin}
 | 
						{#if $appSession.isAdmin}
 | 
				
			||||||
	<a href="/destinations/new" class="btn btn-square btn-sm bg-destinations">
 | 
						<a href="/destinations/new" class="btn btn-square btn-sm bg-destinations">
 | 
				
			||||||
		<svg
 | 
							<svg
 | 
				
			||||||
@@ -55,8 +57,9 @@
 | 
				
			|||||||
		>
 | 
							>
 | 
				
			||||||
	</a>
 | 
						</a>
 | 
				
			||||||
	{/if}
 | 
						{/if}
 | 
				
			||||||
</div>
 | 
					</nav>
 | 
				
			||||||
<div class="flex-col justify-center mt-10 pb-12 sm:pb-16">
 | 
					<br />
 | 
				
			||||||
 | 
					<div class="flex-col justify-center mt-10 pb-12 sm:pb-16 lg:pt-16">
 | 
				
			||||||
	{#if !destinations || ownDestinations.length === 0}
 | 
						{#if !destinations || ownDestinations.length === 0}
 | 
				
			||||||
		<div class="flex-col">
 | 
							<div class="flex-col">
 | 
				
			||||||
			<div class="text-center text-xl font-bold">{$t('destination.no_destination_found')}</div>
 | 
								<div class="text-center text-xl font-bold">{$t('destination.no_destination_found')}</div>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -43,8 +43,10 @@
 | 
				
			|||||||
	});
 | 
						});
 | 
				
			||||||
</script>
 | 
					</script>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<div class="flex space-x-1 p-6 font-bold">
 | 
					<nav
 | 
				
			||||||
	<div class="mr-4 text-2xl tracking-tight">{$t('index.services')}</div>
 | 
						class="flex flex-row px-4 justify-between items-center bg-neutral-focus lg:fixed w-full z-10 lg:-ml-16 lg:pl-20 p-5"
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
						<h1 class="mr-4 text-2xl font-bold">{$t('index.services')}</h1>
 | 
				
			||||||
	<button on:click={newService} class="btn btn-square btn-sm bg-services">
 | 
						<button on:click={newService} class="btn btn-square btn-sm bg-services">
 | 
				
			||||||
		<svg
 | 
							<svg
 | 
				
			||||||
			class="h-6 w-6"
 | 
								class="h-6 w-6"
 | 
				
			||||||
@@ -60,9 +62,9 @@
 | 
				
			|||||||
			/></svg
 | 
								/></svg
 | 
				
			||||||
		>
 | 
							>
 | 
				
			||||||
	</button>
 | 
						</button>
 | 
				
			||||||
</div>
 | 
					</nav>
 | 
				
			||||||
 | 
					<br />
 | 
				
			||||||
<div class="flex-col justify-center mt-10 pb-12 sm:pb-16">
 | 
					<div class="flex-col justify-center mt-10 pb-12 sm:pb-16 lg:pt-16">
 | 
				
			||||||
	{#if !services || ownServices.length === 0}
 | 
						{#if !services || ownServices.length === 0}
 | 
				
			||||||
		<div class="flex-col">
 | 
							<div class="flex-col">
 | 
				
			||||||
			<div class="text-center text-xl font-bold">{$t('service.no_service')}</div>
 | 
								<div class="text-center text-xl font-bold">{$t('service.no_service')}</div>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -36,8 +36,10 @@
 | 
				
			|||||||
	});
 | 
						});
 | 
				
			||||||
</script>
 | 
					</script>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<div class="flex space-x-1 p-6 font-bold">
 | 
					<nav
 | 
				
			||||||
	<div class="mr-4 text-2xl tracking-tight">{$t('index.git_sources')}</div>
 | 
						class="flex flex-row px-4 justify-between items-center bg-neutral-focus lg:fixed w-full z-10 lg:-ml-16 lg:pl-20 p-5"
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
						<h1 class="mr-4 text-2xl font-bold">{$t('index.git_sources')}</h1>
 | 
				
			||||||
	{#if $appSession.isAdmin}
 | 
						{#if $appSession.isAdmin}
 | 
				
			||||||
		<a href="/sources/new" class="btn btn-square btn-sm bg-sources">
 | 
							<a href="/sources/new" class="btn btn-square btn-sm bg-sources">
 | 
				
			||||||
			<svg
 | 
								<svg
 | 
				
			||||||
@@ -55,8 +57,9 @@
 | 
				
			|||||||
			>
 | 
								>
 | 
				
			||||||
		</a>
 | 
							</a>
 | 
				
			||||||
	{/if}
 | 
						{/if}
 | 
				
			||||||
</div>
 | 
					</nav>
 | 
				
			||||||
<div class="flex-col justify-center mt-10 pb-12 sm:pb-16">
 | 
					<br />
 | 
				
			||||||
 | 
					<div class="flex-col justify-center mt-10 pb-12 sm:pb-16 lg:pt-16">
 | 
				
			||||||
	{#if !sources || ownSources.length === 0}
 | 
						{#if !sources || ownSources.length === 0}
 | 
				
			||||||
		<div class="flex-col">
 | 
							<div class="flex-col">
 | 
				
			||||||
			<div class="text-center text-xl font-bold">{$t('source.no_git_sources_found')}</div>
 | 
								<div class="text-center text-xl font-bold">{$t('source.no_git_sources_found')}</div>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user