fix shifted layout (#836)
Browse files
src/lib/components/chat/ChatIntroduction.svelte
CHANGED
@@ -85,4 +85,5 @@
|
|
85 |
{/each}
|
86 |
</div>
|
87 |
</div>{/if}
|
|
|
88 |
</div>
|
|
|
85 |
{/each}
|
86 |
</div>
|
87 |
</div>{/if}
|
88 |
+
<div class="h-40 sm:h-24" />
|
89 |
</div>
|
src/lib/components/icons/Logo.svelte
CHANGED
@@ -20,9 +20,9 @@
|
|
20 |
/>
|
21 |
</svg>
|
22 |
{:else}
|
23 |
-
<
|
24 |
class={classNames}
|
25 |
-
|
26 |
-
|
27 |
/>
|
28 |
{/if}
|
|
|
20 |
/>
|
21 |
</svg>
|
22 |
{:else}
|
23 |
+
<img
|
24 |
class={classNames}
|
25 |
+
alt="{PUBLIC_APP_NAME} logo"
|
26 |
+
src="{PUBLIC_ORIGIN || $page.url.origin}{base}/{PUBLIC_APP_ASSETS}/logo.svg"
|
27 |
/>
|
28 |
{/if}
|