Skip to content

Commit 43714c0

Browse files
authored
fix shifted layout (#836)
1 parent 53e0136 commit 43714c0

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/lib/components/chat/ChatIntroduction.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,5 @@
8585
{/each}
8686
</div>
8787
</div>{/if}
88+
<div class="h-40 sm:h-24" />
8889
</div>

src/lib/components/icons/Logo.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
/>
2121
</svg>
2222
{:else}
23-
<object
23+
<img
2424
class={classNames}
25-
data="{PUBLIC_ORIGIN || $page.url.origin}{base}/{PUBLIC_APP_ASSETS}/logo.svg"
26-
title="{PUBLIC_APP_NAME} logo"
25+
alt="{PUBLIC_APP_NAME} logo"
26+
src="{PUBLIC_ORIGIN || $page.url.origin}{base}/{PUBLIC_APP_ASSETS}/logo.svg"
2727
/>
2828
{/if}

0 commit comments

Comments
 (0)