This commit is contained in:
parent
dbe9810b90
commit
18135a0816
@ -1,5 +1,5 @@
|
|||||||
@import "@fontsource/nunito";
|
@import '@fontsource/nunito';
|
||||||
@import "@fontsource/roboto";
|
@import '@fontsource/roboto';
|
||||||
|
|
||||||
@tailwind base;
|
@tailwind base;
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
|
@ -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>
|
||||||
|
@ -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>
|
||||||
|
@ -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>
|
||||||
|
@ -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) {
|
||||||
|
@ -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>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user