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 <noreply@anthropic.com>
This commit is contained in:
Edward Betts 2026-02-27 20:52:32 +00:00
parent 335c31937e
commit 6424992264

View file

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