logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: 4c2301bc9f07bbc2ffd3d715311d8980912fc9df
parent 77505fa7c9f9188ab224e46fafcf5163a45f732b
Author: Henry Jameson <me@hjkos.com>
Date:   Sun, 10 Apr 2022 18:43:52 +0300

fix scrollable columns

Diffstat:

Msrc/App.scss5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git 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;