feat: 优化显示效果

This commit is contained in:
xingyu4j
2025-11-06 11:28:04 +08:00
parent a4cbd5c094
commit c8e574b6c2
2 changed files with 7 additions and 11 deletions

View File

@@ -514,7 +514,7 @@ onMounted(async () => {
<!-- 右侧详情部分 -->
<Layout class="bg-card mx-4">
<Layout.Header
class="!bg-card border-border flex items-center justify-between border-b"
class="!bg-card border-border flex !h-12 items-center justify-between border-b"
>
<div class="text-lg font-bold">
{{ activeConversation?.title ? activeConversation?.title : '对话' }}
@@ -574,11 +574,9 @@ onMounted(async () => {
</Layout.Content>
<Layout.Footer class="!bg-card m-0 flex flex-col p-0">
<form
class="border-border my-5 mb-5 mt-2 flex flex-col rounded-xl border px-2 py-2.5"
>
<form class="border-border m-2 flex flex-col rounded-xl border p-2">
<textarea
class="box-border h-24 resize-none overflow-auto rounded-md px-0 py-1 focus:outline-none"
class="box-border h-24 resize-none overflow-auto rounded-md p-2 focus:outline-none"
v-model="prompt"
@keydown="handleSendByKeydown"
@input="handlePromptInput"