Make last file in list visible

For some reason the CSS didn't connect the side-nav to the bottom
of the page and this lead to some wrong calculations of the browser
which lead to the fact that the last file in the list of files was
outside of the visible area.

Pinning it with bottom: 0; fixes this problem and now one can scroll
down all the way to even see the last file in the file list.
This commit is contained in:
Jeena 2018-09-25 21:53:07 +02:00
parent 4d95ddad4c
commit c3f219ba92

View file

@ -283,6 +283,10 @@ INDEX = Template(r"""<!DOCTYPE html>
border-bottom: 1px solid #eeeeee !important;
}
.side-nav {
bottom: 0;
}
.fb_side-nav li {
line-height: 36px;
}