From f1277aadf1586dfd9e0e816443c8a44fb6f58196 Mon Sep 17 00:00:00 2001 From: AI Christianson Date: Fri, 14 Mar 2025 17:08:08 -0400 Subject: [PATCH] session panel spacing --- frontend/common/src/components/SessionList.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/frontend/common/src/components/SessionList.tsx b/frontend/common/src/components/SessionList.tsx index d517a23..fd2eab6 100644 --- a/frontend/common/src/components/SessionList.tsx +++ b/frontend/common/src/components/SessionList.tsx @@ -46,17 +46,17 @@ export const SessionList: React.FC = ({ return ( -
+
{sessions.map((session) => { const buttonContent = ( <> -
-
-
{session.name}
-
+
+
+
{session.name}
+
{session.steps.length} steps • {formatDate(session.updated)}
-
+
{session.status}
@@ -68,7 +68,7 @@ export const SessionList: React.FC = ({ { key: session.id, onClick: () => onSelectSession?.(session.id), - className: `w-full flex items-start p-3 text-left rounded-md transition-colors hover:bg-accent/50 ${ + className: `w-full flex items-start px-2 py-2 text-left rounded-md transition-colors hover:bg-accent/50 ${ currentSessionId === session.id ? 'bg-accent' : '' }` },