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:
parent
4d95ddad4c
commit
c3f219ba92
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue