Skip to content

Commit 358a55e

Browse files
Increase universal page side margins (px-9 -> px-12)
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 5e2b648 commit 358a55e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/app/src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ function Shell(): React.ReactElement {
333333
<div className="flex min-h-0 flex-1">
334334
<div className="min-h-0 flex-1 overflow-y-auto">
335335
{nav === 'chat' ? (
336-
<div className="h-full px-9 py-6">
336+
<div className="h-full px-12 py-6">
337337
<ChatPage
338338
chatId={chatId}
339339
project={project}
@@ -351,7 +351,7 @@ function Shell(): React.ReactElement {
351351
) : (
352352
// Universal page container: one place controls width + side
353353
// margins for every section so they stay consistent.
354-
<div className="mx-auto w-full max-w-6xl px-9 py-6">
354+
<div className="mx-auto w-full max-w-6xl px-12 py-6">
355355
{nav === 'overview' && <OverviewArea />}
356356
{nav === 'loops' && <LoopsPage projects={allProjects} project={project} />}
357357
{nav === 'plugins' && <PluginsPage project={project} />}

0 commit comments

Comments
 (0)