From bc61b28243132a0224ecfc3b7ca450e2bcff4426 Mon Sep 17 00:00:00 2001 From: Dorian Date: Wed, 18 Mar 2026 18:53:12 +0000 Subject: [PATCH] fix: mesh mobile scroll + overflow visible Mobile mesh had overflow:hidden inherited from desktop layout, preventing scrolling. Added overflow:visible override for mobile. Co-Authored-By: Claude Opus 4.6 (1M context) --- neode-ui/src/views/Mesh.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/neode-ui/src/views/Mesh.vue b/neode-ui/src/views/Mesh.vue index 1126b4c2..3cb286cf 100644 --- a/neode-ui/src/views/Mesh.vue +++ b/neode-ui/src/views/Mesh.vue @@ -1412,6 +1412,7 @@ function truncatePubkey(hex: string | null): string { @media (max-width: 768px) { .mesh-view { height: auto; + overflow: visible; padding: 0 12px 12px 12px; }