From ebeb180f3fefa21e49aed4e4a5569d92c99502a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hartmut=20N=C3=B6renberg?= Date: Thu, 9 Apr 2026 21:14:42 +0200 Subject: [PATCH] fix(ui): make project detail and scenario pages full width Replace max-w-5xl/max-w-7xl constrained wrappers with the app-page utility class, consistent with other full-width pages like the projects list. Co-Authored-By: Claude Sonnet 4.6 --- apps/web/src/app/(app)/projects/[id]/page.tsx | 2 +- apps/web/src/app/(app)/projects/[id]/scenario/page.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/app/(app)/projects/[id]/page.tsx b/apps/web/src/app/(app)/projects/[id]/page.tsx index 43ebfba..f90a14b 100644 --- a/apps/web/src/app/(app)/projects/[id]/page.tsx +++ b/apps/web/src/app/(app)/projects/[id]/page.tsx @@ -37,7 +37,7 @@ export default async function ProjectDetailPage({ params }: ProjectDetailPagePro const unfilledSeats = activeDemands.reduce((sum, demand) => sum + demand.unfilledHeadcount, 0); return ( -
+
{/* Back link */} +