From c28ba2e6a4ab2ab58c9054786129e5d36af9ad92 Mon Sep 17 00:00:00 2001 From: "Calum H." Date: Mon, 8 Jun 2026 16:56:14 +0100 Subject: [PATCH] fix: z index of console tab expanded (#6334) fix: z index --- packages/ui/src/layouts/shared/console/layout.vue | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/ui/src/layouts/shared/console/layout.vue b/packages/ui/src/layouts/shared/console/layout.vue index 73b98550a..038f596fd 100644 --- a/packages/ui/src/layouts/shared/console/layout.vue +++ b/packages/ui/src/layouts/shared/console/layout.vue @@ -458,4 +458,14 @@ async function handleShare() { .modrinth-console-fullscreen-active iframe[name='intercom-messenger-frame'] { z-index: 14 !important; } + +.modrinth-console-fullscreen-active .loading-indicator-container, +.modrinth-console-fullscreen-active .app-contents::before { + z-index: 14 !important; +} + +.modrinth-console-fullscreen-active .app-grid-navbar, +.modrinth-console-fullscreen-active .app-grid-statusbar { + z-index: 0 !important; +}