fix admin login and root page height

This commit is contained in:
bytedream 2023-12-01 14:10:38 +01:00
parent 7400b41670
commit 2538285632
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@
]; ];
</script> </script>
<div class="flex justify-around items-center h-full"> <div class="flex justify-around items-center h-screen">
{#each tabs as tab} {#each tabs as tab}
{#if tab.enabled} {#if tab.enabled}
<div class="flex flex-col gap-4 justify-center items-center"> <div class="flex flex-col gap-4 justify-center items-center">

View File

@ -1,3 +1,3 @@
<div class="flex justify-center items-center w-full h-full"> <div class="flex justify-center items-center w-full h-screen">
<slot /> <slot />
</div> </div>