|
@@ -38,7 +38,8 @@
|
|
|
showChangelog,
|
|
|
temporaryChatEnabled,
|
|
|
toolServers,
|
|
|
- showSearch
|
|
|
+ showSearch,
|
|
|
+ showSidebar
|
|
|
} from '$lib/stores';
|
|
|
|
|
|
import Sidebar from '$lib/components/layout/Sidebar.svelte';
|
|
@@ -339,7 +340,11 @@
|
|
|
{#if loaded}
|
|
|
<slot />
|
|
|
{:else}
|
|
|
- <div class="w-full flex-1 h-full flex items-center justify-center">
|
|
|
+ <div
|
|
|
+ class="w-full flex-1 h-full flex items-center justify-center {$showSidebar
|
|
|
+ ? ' md:max-w-[calc(100%-260px)]'
|
|
|
+ : ' '}"
|
|
|
+ >
|
|
|
<Spinner className="size-5" />
|
|
|
</div>
|
|
|
{/if}
|