From f6fe95c77cc17ce594d1fd3f70049fb8cac5eed3 Mon Sep 17 00:00:00 2001 From: rcourtman Date: Wed, 26 Nov 2025 09:37:20 +0000 Subject: [PATCH] fix: constrain max layout width to 1768px on wide screens Prevents the UI from stretching uncomfortably on ultra-wide displays. --- frontend-modern/src/index.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend-modern/src/index.css b/frontend-modern/src/index.css index a4edab1..5bb1298 100644 --- a/frontend-modern/src/index.css +++ b/frontend-modern/src/index.css @@ -126,7 +126,7 @@ @layer components { .pulse-shell { width: 100%; - max-width: 100%; + max-width: 1768px; margin-inline: auto; padding-inline: clamp(1rem, 1.5vw, 2rem); transition: padding-inline 0.3s ease;