From e9f977cd70deef99e7c11ebc27b6093de25574b6 Mon Sep 17 00:00:00 2001 From: you Date: Fri, 24 Apr 2026 15:31:23 +0000 Subject: [PATCH] fix: bump obs-table min-width to 720px for new Last Packet column The addition of the Last Packet column brings the table to 8 columns. The previous min-width of 640px was tight for 7 columns; 720px prevents cramped rendering and ensures the horizontal scroll trigger is appropriate on narrow viewports. --- public/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/style.css b/public/style.css index db9c5d72..35fd0a5d 100644 --- a/public/style.css +++ b/public/style.css @@ -1556,7 +1556,7 @@ tr[data-hops]:hover { background: rgba(59,130,246,0.1); } /* #20 — Observers table horizontal scroll on mobile */ .obs-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; } -.obs-table-scroll .obs-table { min-width: 640px; } +.obs-table-scroll .obs-table { min-width: 720px; } /* #206 — Analytics/Compare tables scroll wrappers on mobile */ .analytics-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }