From 5fee17e1aba3ca3cd8054f33f367110593b3218c Mon Sep 17 00:00:00 2001 From: Chris Frankland-Wright Date: Fri, 8 Aug 2025 01:02:06 +0100 Subject: [PATCH] fix: Ensure network interfaces display on single line with scroll Co-authored-by: aider (gemini/gemini-2.5-pro) --- static/style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/static/style.css b/static/style.css index 0d64a03..87167c1 100644 --- a/static/style.css +++ b/static/style.css @@ -65,6 +65,13 @@ body { letter-spacing: 2px; } +#interfaces { + text-align: center; + white-space: nowrap; + overflow-x: auto; + padding-bottom: 5px; /* Add some space for the scrollbar if it appears */ +} + .full-width { grid-column: 1 / -1; }