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) <noreply@anthropic.com>
This commit is contained in:
Dorian 2026-03-18 18:53:12 +00:00
parent f45c51e5d5
commit bc61b28243

View File

@ -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;
}