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:
parent
17c99377f6
commit
f6fe95c77c
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue