mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 05:59:39 +02:00
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:
parent
06bf150218
commit
9aa5169f8e
1 changed files with 6 additions and 5 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue