fix(storage): move onboarding modal outside flex layout container

The MiniOnboardingModal was placed inside the .layout-container flex div,
which interfered with its fixed positioning and caused it to render
unstyled at the bottom of the screen. Moved it to the same level as
SessionExpiredBanner, outside the layout container.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-25 13:07:29 +01:00
parent 06bf150218
commit 9aa5169f8e

View file

@ -198,12 +198,13 @@
{@render children()}
</div>
</main>
<!-- Onboarding Modal -->
{#if storageOnboarding.shouldShow}
<MiniOnboardingModal store={storageOnboarding} appName="Storage" appEmoji="☁️" />
{/if}
</div>
<!-- Onboarding Modal -->
{#if storageOnboarding.shouldShow}
<MiniOnboardingModal store={storageOnboarding} appName="Storage" appEmoji="☁️" />
{/if}
<SessionExpiredBanner locale={$locale || 'de'} loginHref="/login" />
{/if}
</AuthGate>