From 35e72ed6dc39febf31e97c626a722858cc79a78d Mon Sep 17 00:00:00 2001 From: d-kimsuon Date: Wed, 3 Sep 2025 20:36:13 +0900 Subject: [PATCH] feat: adjust style for mobile --- .../components/SessionPageContent.tsx | 184 +++++++++--------- .../sessionSidebar/SessionSidebar.tsx | 5 +- 2 files changed, 96 insertions(+), 93 deletions(-) diff --git a/src/app/projects/[projectId]/sessions/[sessionId]/components/SessionPageContent.tsx b/src/app/projects/[projectId]/sessions/[sessionId]/components/SessionPageContent.tsx index 7f009f4..7d8f3f7 100644 --- a/src/app/projects/[projectId]/sessions/[sessionId]/components/SessionPageContent.tsx +++ b/src/app/projects/[projectId]/sessions/[sessionId]/components/SessionPageContent.tsx @@ -70,7 +70,7 @@ export const SessionPageContent: FC<{ }, [conversations, isRunningTask, isPausedTask, previousConversationLength]); return ( -
+
-
+
+
+
+ + + +
+ +
+
+

+ {session.meta.firstCommand !== null + ? firstCommandToTitle(session.meta.firstCommand) + : sessionId} +

+
+ +
+ {project?.project.claudeProjectPath && ( +

+ Project:{" "} + {project.project.meta.projectPath ?? + project.project.claudeProjectPath} +

+ )} +

+ Session ID: {sessionId} +

+
+ + {isRunningTask && ( +
+ +
+

+ Conversation is in progress... +

+
+ +
+ )} + + {isPausedTask && ( +
+ +
+

+ Conversation is paused... +

+
+ +
+ )} +
+
+
-
-
- - - -
- -
-
-

- {session.meta.firstCommand !== null - ? firstCommandToTitle(session.meta.firstCommand) - : sessionId} -

-
- -
- {project?.project.claudeProjectPath && ( -

- Project:{" "} - {project.project.meta.projectPath ?? - project.project.claudeProjectPath} -

- )} -

- Session ID: {sessionId} -

-
- - {isRunningTask && ( -
- -
-

- Conversation is in progress... -

-
- -
- )} - - {isPausedTask && ( -
- -
-

- Conversation is paused... -

-
- -
- )} -
-
-
- +
{sidebarContent}