fix(avocet): constrain grid-active to 640px on wide viewports using left/right offsets
This commit is contained in:
parent
ddb6025c89
commit
6829bebdd4
1 changed files with 3 additions and 3 deletions
|
|
@ -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 ── */
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue