fix(ui): add left scroll offset to PageCarousel

First panel no longer sticks to the left edge. Left padding set to
calc(50vw - 240px) so the carousel starts with generous breathing room.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-04-03 13:16:20 +02:00
parent ec7c563283
commit cf03743bae

View file

@ -168,7 +168,7 @@
display: flex;
gap: 1rem;
overflow-x: auto;
padding: 0.5rem 0;
padding: 0.5rem 2rem 0.5rem calc(50vw - 240px);
scrollbar-width: none;
flex: 1;
}