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 17c99377f6
commit f6fe95c77c

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;