fix(avocet): constrain grid-active to 640px on wide viewports using left/right offsets

This commit is contained in:
pyr0ball 2026-03-08 07:26:46 -07:00
parent ddb6025c89
commit 6829bebdd4

View file

@ -461,10 +461,10 @@ onUnmounted(() => {
.bucket-grid-footer.grid-active { .bucket-grid-footer.grid-active {
position: fixed; position: fixed;
bottom: 0; bottom: 0;
left: 0; left: calc(50% - min(50%, 320px));
right: 0; right: calc(50% - min(50%, 320px));
transform: translateY(-8px);
opacity: 0.45; opacity: 0.45;
/* translateY(-8px) is owned by Anime.js — no transform here */
} }
/* ── Toss edge zones ── */ /* ── Toss edge zones ── */