Skip to content

Commit 10f0559

Browse files
committed
fix: UI fix
1 parent 6af3542 commit 10f0559

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/server/webui/src/lib/components/chat/ChatMessages.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
let { class: className, messages = [], isLoading = false }: Props = $props();
1212
</script>
1313

14-
<div class="flex h-full flex-col space-y-10 pt-16 md:pt-24 {className}" style="height: auto;">
14+
<div class="flex h-full flex-col space-y-10 pt-16 md:pt-24 {className}" style="height: auto; ">
1515
{#each messages as message}
1616
<ChatMessage
1717
class="mx-auto w-full max-w-[56rem]"

tools/server/webui/src/lib/components/chat/ChatScreen.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<ChatMessages class="mb-36" messages={activeMessages()} isLoading={isLoading()} />
7878

7979
<div
80-
class="z-999 sticky bottom-0 m-auto max-w-[56rem]"
80+
class="z-999 sticky bottom-0 mx-auto mt-auto max-w-[56rem]"
8181
in:slide={{ duration: 400, axis: 'y' }}
8282
>
8383
<div class="bg-background m-auto rounded-t-3xl border-t pb-4 min-w-[56rem]">

0 commit comments

Comments
 (0)