Fix sidebars and make them not expand
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 6m7s

This commit is contained in:
2026-03-19 01:16:10 +00:00
parent 08125204c5
commit 8627a7945e
3 changed files with 10 additions and 14 deletions

View File

@@ -79,9 +79,9 @@ onUnmounted(() => {
</script>
<template>
<div class="flex-col flex">
<div class="flex-col flex min-h-0">
<Header>Chat</Header>
<div ref="messagesContainer" class="flex flex-col overflow-y-auto overflow-x-hidden p-2 min-w-0">
<div ref="messagesContainer" class="flex flex-col flex-1 min-h-0 overflow-y-auto overflow-x-hidden p-2 min-w-0">
<p v-for="message in messages" :key="message.id" class="break-words min-w-0 w-full">
<span class="text-tertiary">{{ message.authorId }}:</span>
<template