1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-03 09:07:19 +00:00

Fix "The sidebar of the repository file list does not have a fixed height #34298" (#34321)

There is a known issue where scrolling to the bottom of the page is
affected by unknown elements in the footer area:

24145f8110/templates/base/footer.tmpl (L11-L18)

![after](https://github.com/user-attachments/assets/4cdbce32-d22e-4907-a78b-c8e301017fac)
This commit is contained in:
Kerwin Bryant
2025-05-08 05:33:30 +08:00
committed by GitHub
parent 020e774b91
commit bbfc21e74f
2 changed files with 6 additions and 1 deletions

View File

@ -58,6 +58,11 @@
flex: 0 0 15%;
min-width: 0;
max-height: 100vh;
position: sticky;
top: 0;
bottom: 0;
height: 100%;
overflow-y: hidden;
}
.repo-view-content {