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:
parent
335c31937e
commit
6424992264
1 changed files with 5 additions and 0 deletions
|
|
@ -44,6 +44,11 @@ html, body {
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#stop-list,
|
||||||
|
#route-master-list {
|
||||||
|
padding-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
#stop-list .stop-item {
|
#stop-list .stop-item {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding: 0.25rem 0.5rem;
|
padding: 0.25rem 0.5rem;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue