From bbc31ef0776a7199e0f39f17e6cf82feb8dbdb51 Mon Sep 17 00:00:00 2001 From: "Calum H." Date: Wed, 12 Nov 2025 04:00:46 +0000 Subject: [PATCH] fix: z index issues for mobile nav (#4766) * fix: z index issues for mobile nav Closes: #4722 * fix: below modals --------- Co-authored-by: Prospector <6166773+Prospector@users.noreply.github.com> --- apps/frontend/src/layouts/default.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/frontend/src/layouts/default.vue b/apps/frontend/src/layouts/default.vue index ad84124a1..60c2661c0 100644 --- a/apps/frontend/src/layouts/default.vue +++ b/apps/frontend/src/layouts/default.vue @@ -1820,7 +1820,7 @@ const footerLinks = [ padding-bottom: var(--size-rounded-card); left: 0; background-color: var(--color-raised-bg); - z-index: 6; + z-index: 11; // 20 = modals, 10 = svg icons transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.54, 0.84, 0.42, 1); border-radius: var(--size-rounded-card) var(--size-rounded-card) 0 0; @@ -1901,7 +1901,7 @@ const footerLinks = [ bottom: 0; background-color: var(--color-raised-bg); box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.3); - z-index: 7; + z-index: 11; // 20 = modals, 10 = svg icons width: 100%; align-items: center; justify-content: space-between;