just remove the overlay

This commit is contained in:
Michael Freno
2025-12-19 16:26:26 -05:00
parent e64fd84cba
commit 08431a1165

View File

@@ -159,19 +159,7 @@ function AppLayout(props: { children: any }) {
return ( return (
<> <>
<Show when={!barsInitialized()}> <div class="flex max-w-screen flex-row">
<div class="bg-base fixed inset-0 z-100">
<TerminalSplash />
</div>
</Show>
<div
class="flex max-w-screen flex-row"
style={{
opacity: barsInitialized() ? "1" : "0",
transition: "opacity 0.3s ease-in-out"
}}
>
<LeftBar /> <LeftBar />
<div <div
class="relative min-h-screen rounded-t-lg shadow-2xl" class="relative min-h-screen rounded-t-lg shadow-2xl"
@@ -180,9 +168,7 @@ function AppLayout(props: { children: any }) {
"margin-left": `${leftBarSize()}px` "margin-left": `${leftBarSize()}px`
}} }}
> >
<Show when={barsInitialized()} fallback={<TerminalSplash />}>
<Suspense fallback={<TerminalSplash />}>{props.children}</Suspense> <Suspense fallback={<TerminalSplash />}>{props.children}</Suspense>
</Show>
</div> </div>
<RightBar /> <RightBar />
</div> </div>