From 6424992264f01d6010a2bfa4e2902cd154aafc97 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Fri, 27 Feb 2026 20:52:32 +0000 Subject: [PATCH] Fix stop list cut off at bottom of sidebar WebKit/Chrome ignores padding-bottom on overflow-y:auto containers, so the sidebar's padding: 1rem wasn't creating scroll space below the last stop. Fix by adding padding-bottom directly to #stop-list and #route-master-list, which are inside the scrollable container. Co-Authored-By: Claude Sonnet 4.6 --- web/static/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web/static/style.css b/web/static/style.css index 03f0101..d7aebec 100644 --- a/web/static/style.css +++ b/web/static/style.css @@ -44,6 +44,11 @@ html, body { font-size: 0.8rem; } +#stop-list, +#route-master-list { + padding-bottom: 1rem; +} + #stop-list .stop-item { cursor: pointer; padding: 0.25rem 0.5rem;