Skip to content

Commit 6760d7e

Browse files
committed
fix: whitelabeled icon
1 parent d61187c commit 6760d7e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

apps/ui/src/routes/__layout.svelte

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,11 @@
120120
<nav class="nav-main">
121121
<div class="flex h-screen w-full flex-col items-center transition-all duration-100">
122122
{#if !$appSession.whiteLabeled}
123-
<div class="my-4 h-10 w-10"><img src="/favicon.png" alt="coolLabs logo" /></div>
123+
<div class="mb-2 mt-4 h-10 w-10">
124+
<img src="/favicon.png" alt="coolLabs logo" />
125+
</div>
124126
{:else if $appSession.whiteLabeledDetails.icon}
125-
<div class="my-4 h-10 w-10">
127+
<div class="mb-2 mt-4 h-10 w-10">
126128
<img src={$appSession.whiteLabeledDetails.icon} alt="White labeled logo" />
127129
</div>
128130
{/if}

0 commit comments

Comments
 (0)