Layout Max-Width for MacBook screens #4

Closed
opened 2026-01-15 01:20:16 +00:00 by tonym · 0 comments
Owner

Problem

UI feels too spread out on MacBook screens. Content expands to full width without constraints, making it hard to scan.

Solution

Add max-width constraint to content area.

Modify client/src/components/layout.tsx:

<div style={{ maxWidth: 1400, margin: "0 auto", padding: "0 16px" }}>
  {children}
</div>

Modify client/src/utils/overrides.css:

.ant-form { max-width: 800px; }

Priority

Low - simple CSS change

## Problem UI feels too spread out on MacBook screens. Content expands to full width without constraints, making it hard to scan. ## Solution Add max-width constraint to content area. ### Modify `client/src/components/layout.tsx`: ```tsx <div style={{ maxWidth: 1400, margin: "0 auto", padding: "0 16px" }}> {children} </div> ``` ### Modify `client/src/utils/overrides.css`: ```css .ant-form { max-width: 800px; } ``` ## Priority Low - simple CSS change
tonym closed this issue 2026-01-16 03:41:13 +00:00
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: tonym/spoolman2#4
No description provided.