mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-25 20:15:37 +02:00
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:
@@ -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}
|
||||
|
||||
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user