fix: observers table horizontal scroll wrapper on mobile

closes #20
This commit is contained in:
you
2026-03-19 21:11:04 +00:00
parent 506148852c
commit 2ef18805de

View File

@@ -98,7 +98,7 @@
<span class="obs-stat"><span class="health-dot health-red">✕</span> ${offline} Offline</span>
<span class="obs-stat">📡 ${observers.length} Total</span>
</div>
<table class="data-table obs-table" id="obsTable">
<div class="obs-table-scroll"><table class="data-table obs-table" id="obsTable">
<caption class="sr-only">Observer status and statistics</caption>
<thead><tr>
<th>Status</th><th>Name</th><th>Region</th><th>Last Seen</th>
@@ -117,7 +117,7 @@
<td>${uptimeStr(o.first_seen)}</td>
</tr>`;
}).join('')}</tbody>
</table>`;
</table></div>`;
makeColumnsResizable('#obsTable', 'meshcore-obs-col-widths');
}