UI/UX: Remove max-width constraint and reduce main container padding #16
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The
<main>element inAppShell.tsxhasmaxWidth: 1400pxandpadding: 2rem(32px all sides). On typical 1920px+ monitors this wastes significant horizontal space — leaving large empty margins on both sides. Tables, forms, and data grids are all constrained to ~1336px usable width.Proposed Changes
maxWidth: 1400from<main>inAppShell.tsx(e.g. remove entirely, or raise to100%)2remto1remor1rem 1.5remmaxWidth: 400)Impact
HIGH — Immediately reclaims horizontal space on every page. Tables gain room for more visible columns and longer text before truncation.
Files
web/src/components/AppShell.tsx(primary change)