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/roboto";
@import '@fontsource/nunito';
@import '@fontsource/roboto';
@tailwind base;
@tailwind components;

View File

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

View File

@ -26,7 +26,7 @@
>
{#if !data.enabled}
<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>
</div>