format
All checks were successful
delpoy / build-and-deploy (push) Successful in 5m13s

This commit is contained in:
bytedream 2024-10-19 13:53:57 +02:00
parent dbe9810b90
commit 18135a0816
6 changed files with 11 additions and 11 deletions

View File

@ -1,5 +1,5 @@
@import "@fontsource/nunito"; @import '@fontsource/nunito';
@import "@fontsource/roboto"; @import '@fontsource/roboto';
@tailwind base; @tailwind base;
@tailwind components; @tailwind components;

View File

@ -55,8 +55,8 @@
]; ];
let pageTitleSuffix = let pageTitleSuffix =
tabs.find((t) => $page.url.pathname === t.path)?.name ?? (tabs.find((t) => $page.url.pathname === t.path)?.name ??
$page.url.pathname === `${env.PUBLIC_BASE_PATH}/admin/login` $page.url.pathname === `${env.PUBLIC_BASE_PATH}/admin/login`)
? 'Login ' ? 'Login '
: null; : null;
</script> </script>

View File

@ -177,10 +177,10 @@
{report.status === 'none' {report.status === 'none'
? 'Unbearbeitet' ? 'Unbearbeitet'
: report.status === 'review' : report.status === 'review'
? 'In Bearbeitung' ? 'In Bearbeitung'
: report.status === 'reviewed' : report.status === 'reviewed'
? 'Bearbeitet' ? 'Bearbeitet'
: ''} : ''}
</td> </td>
<td>{report.draft ? 'Entwurf' : 'Erstellt'}</td> <td>{report.draft ? 'Entwurf' : 'Erstellt'}</td>
</tr> </tr>

View File

@ -26,7 +26,7 @@
> >
{#if !data.enabled} {#if !data.enabled}
<div <div
class="absolute top-0 left-0 w-full h-full bg-black bg-opacity-50 backdrop-blur-sm z-50 rounded-xl flex justify-center md:items-center pt-20 md:pt-0" class="absolute top-0 left-0 w-full h-full bg-black bg-opacity-50 backdrop-blur-sm z-10 rounded-xl flex justify-center md:items-center pt-20 md:pt-0"
> >
<h1 class="text-2xl sm:text-3xl md:text-5xl text-white">Anmeldung geschlossen</h1> <h1 class="text-2xl sm:text-3xl md:text-5xl text-white">Anmeldung geschlossen</h1>
</div> </div>

View File

@ -287,7 +287,7 @@
? `Regeln können in ${Math.max( ? `Regeln können in ${Math.max(
30 - rulesModalSecondsOpened, 30 - rulesModalSecondsOpened,
0 0
)} Sekunden akzeptiert werden` )} Sekunden akzeptiert werden`
: ''} : ''}
on:click={() => { on:click={() => {
if (rulesModalSecondsOpened < 30) { if (rulesModalSecondsOpened < 30) {

View File

@ -1,5 +1,5 @@
<script lang="ts"> <script lang="ts">
import {rulesLong, rulesShort} from '$lib/rules'; import { rulesLong, rulesShort } from '$lib/rules';
</script> </script>
<svelte:head> <svelte:head>