fix: use responsive max-width for better scaling on all displays

Changes from hard-coded 1768px to min(95vw, 2400px) which scales
appropriately on 4K and ultrawide monitors while maintaining
breathing room at screen edges.
This commit is contained in:
rcourtman 2025-11-26 09:46:56 +00:00
parent 2458bf5abc
commit 7a0546c034

View file

@ -126,7 +126,7 @@
@layer components {
.pulse-shell {
width: 100%;
max-width: 1768px;
max-width: min(95vw, 2400px);
margin-inline: auto;
padding-inline: clamp(1rem, 1.5vw, 2rem);
transition: padding-inline 0.3s ease;