From 4c2301bc9f07bbc2ffd3d715311d8980912fc9df Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Sun, 10 Apr 2022 18:43:52 +0300 Subject: [PATCH] fix scrollable columns --- src/App.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/App.scss b/src/App.scss index 590c053f..8f391070 100644 --- a/src/App.scss +++ b/src/App.scss @@ -115,6 +115,9 @@ nav { #sidebar { grid-area: sidebar; +} + +.column.-scrollable { top: var(--navbar-height); position: sticky; } @@ -192,7 +195,7 @@ nav { padding-top: 10px; position: sticky; - top: 0; + top: var(--navbar-height); max-height: calc(100vh - var(--navbar-height)); overflow-y: auto; overflow-x: hidden;