fix(views): restore chat and inbox list gutters (#5120)

Co-authored-by: Lambda <lambda@multica.ai>
Co-authored-by: multica-agent <github@multica.ai>
This commit is contained in:
Jiayuan Zhang
2026-07-09 02:29:21 +08:00
committed by GitHub
parent f8c4c88129
commit 3efe5bac17
2 changed files with 4 additions and 4 deletions

View File

@@ -133,7 +133,7 @@ export function ChatPage() {
);
const listHeader = (
<PageHeader className="justify-between border-b-0">
<PageHeader className="justify-between">
<div className="flex items-center gap-2">
<h1 className="text-sm font-semibold">{t(($) => $.page.title)}</h1>
</div>
@@ -142,7 +142,7 @@ export function ChatPage() {
);
const listBody = (
<div className="p-1">
<div className="px-2 py-1">
<ChatThreadList
sessions={c.sessions}
agents={c.agents}

View File

@@ -223,7 +223,7 @@ export function InboxPage() {
// -- Shared sub-components --------------------------------------------------
const listHeader = (
<PageHeader className="justify-between border-b-0">
<PageHeader className="justify-between">
<div className="flex items-center gap-2">
<h1 className="text-sm font-semibold">{t(($) => $.page.title)}</h1>
{unreadCount > 0 && (
@@ -273,7 +273,7 @@ export function InboxPage() {
<p className="text-sm">{t(($) => $.list.empty)}</p>
</div>
) : (
<div className="p-1">
<div className="px-2 py-1">
{items.map((item) => (
<InboxListItem
key={item.id}