fix scrollable columns

This commit is contained in:
Henry Jameson 2022-04-10 18:43:52 +03:00
parent 77505fa7c9
commit 4c2301bc9f
1 changed files with 4 additions and 1 deletions

View File

@ -115,6 +115,9 @@ nav {
#sidebar { #sidebar {
grid-area: sidebar; grid-area: sidebar;
}
.column.-scrollable {
top: var(--navbar-height); top: var(--navbar-height);
position: sticky; position: sticky;
} }
@ -192,7 +195,7 @@ nav {
padding-top: 10px; padding-top: 10px;
position: sticky; position: sticky;
top: 0; top: var(--navbar-height);
max-height: calc(100vh - var(--navbar-height)); max-height: calc(100vh - var(--navbar-height));
overflow-y: auto; overflow-y: auto;
overflow-x: hidden; overflow-x: hidden;