From 875a8bdafffcf7641ec4f19c95dbaad03bce0138 Mon Sep 17 00:00:00 2001 From: Dan Brown Date: Sat, 28 Nov 2020 15:28:44 +0000 Subject: [PATCH] Made docs sidebar a slight bit easier to scroll Now it easily goes off the page, made it indapentally scrollable. Will probably do something different in future as it grows more. --- resources/sass/_blocks.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/sass/_blocks.scss b/resources/sass/_blocks.scss index 5b219b9ae..75adf12aa 100644 --- a/resources/sass/_blocks.scss +++ b/resources/sass/_blocks.scss @@ -274,4 +274,6 @@ .sticky-sidebar { position: sticky; top: $-m; + max-height: calc(100vh - #{$-m}); + overflow-y: auto; }