diff options
| author | Henry Jameson <me@hjkos.com> | 2022-04-10 18:43:52 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-04-10 18:43:52 +0300 |
| commit | 4c2301bc9f07bbc2ffd3d715311d8980912fc9df (patch) | |
| tree | 2fff5e14119be8de661223d369888772fb5efd3b /src | |
| parent | 77505fa7c9f9188ab224e46fafcf5163a45f732b (diff) | |
fix scrollable columns
Diffstat (limited to 'src')
| -rw-r--r-- | src/App.scss | 5 |
1 files changed, 4 insertions, 1 deletions
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; |
