Skip to content

Commit 717ebb7

Browse files
Widen Overview, Plugins, and Loop detail to match Settings width
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent a86d471 commit 717ebb7

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/app/src/pages/Loops.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ function LoopDetail({ cwd, id, onBack }: { cwd: string; id: string; onBack: () =
349349
const running = loop.status === 'running' || loop.status === 'queued';
350350

351351
return (
352-
<div className="mx-auto max-w-4xl">
352+
<div className="mx-auto w-full max-w-5xl">
353353
<button className="mb-4 text-sm text-muted hover:text-text" onClick={onBack}>
354354
← all loops
355355
</button>

packages/app/src/pages/OverviewArea.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { UsagePage } from './Usage';
77
export function OverviewArea(): React.ReactElement {
88
const [tab, setTab] = useState('overview');
99
return (
10-
<div className="mx-auto w-full max-w-4xl">
10+
<div className="mx-auto w-full max-w-5xl">
1111
<Tabs
1212
tabs={[
1313
{ id: 'overview', label: 'Overview' },

packages/app/src/pages/Plugins.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { AssetsPage } from './Assets';
77
export function PluginsPage({ project }: { project: string | null }): React.ReactElement {
88
const [tab, setTab] = useState('installed');
99
return (
10-
<div className="mx-auto w-full max-w-4xl">
10+
<div className="mx-auto w-full max-w-5xl">
1111
<Tabs
1212
tabs={[
1313
{ id: 'installed', label: 'Plugins' },

0 commit comments

Comments
 (0)