Merge pull request #196 from ipnet-mesh/chore/fix-qr-code-z-index

fix: increase mobile dropdown z-index to render above QR code on node detail page
This commit is contained in:
JingleManSweep
2026-05-06 12:37:30 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
@@ -704,7 +704,7 @@ export function renderAuthSection(container, config) {
<div tabindex="0" role="button" class="btn btn-ghost btn-circle btn-sm avatar">
${pictureHtml}
</div>
<ul tabindex="0" class="dropdown-content menu z-[1] p-2 shadow bg-base-100 rounded-box w-56 mt-3">
<ul tabindex="0" class="dropdown-content menu z-50 p-2 shadow bg-base-100 rounded-box w-56 mt-3">
<li class="menu-title">
<div class="flex flex-col gap-1">
<span class="font-medium">${displayName}</span>
+1 -1
View File
@@ -99,7 +99,7 @@
<div tabindex="0" role="button" class="btn btn-ghost">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" /></svg>
</div>
<ul id="mobile-nav" tabindex="0" class="dropdown-content menu z-[1] p-2 shadow bg-base-100 rounded-box w-56 mt-3">
<ul id="mobile-nav" tabindex="0" class="dropdown-content menu z-50 p-2 shadow bg-base-100 rounded-box w-56 mt-3">
</ul>
</div>
</div>