fix: constrain max layout width to 1768px on wide screens

Prevents the UI from stretching uncomfortably on ultra-wide displays.
This commit is contained in:
rcourtman
2025-11-26 09:37:20 +00:00
parent 8044c8cfba
commit 2458bf5abc
+1 -1
View File
@@ -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;