Skip to content

Commit 2ade163

Browse files
committed
fix: styling
1 parent 11eed06 commit 2ade163

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

infrastructure/eid-wallet/src-tauri/gen/android/.idea/AndroidProjectSystem.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

infrastructure/eid-wallet/src/app.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ body {
7575
padding-bottom: env(safe-area-inset-bottom);
7676
padding-left: env(safe-area-inset-left);
7777
padding-right: env(safe-area-inset-right);
78+
background-color: var(--color-primary);
7879
}
7980

8081
/* Ensure background remains correct during transitions */

infrastructure/eid-wallet/src/routes/+layout.svelte

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,5 +91,7 @@ onNavigate((navigation) => {
9191
{#if showSplashScreen}
9292
<SplashScreen />
9393
{:else}
94-
{@render children?.()}
94+
<div class="bg-white h-[100dvh] overflow-scroll">
95+
{@render children?.()}
96+
</div>
9597
{/if}

0 commit comments

Comments
 (0)