From 5b5d94e9246e728d2c4f2f4af56cf58eb0f0b0b6 Mon Sep 17 00:00:00 2001 From: Jeff Stone Date: Mon, 16 Oct 2017 14:48:26 -0500 Subject: [PATCH] Added an overflow and height style to the nav sidebar When there are many methods within a tag, the results would scroll off of the page and be unreachable. --- assets/themes/default/static/css/style.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/assets/themes/default/static/css/style.css b/assets/themes/default/static/css/style.css index 36f63a0..aa9cd2f 100644 --- a/assets/themes/default/static/css/style.css +++ b/assets/themes/default/static/css/style.css @@ -228,7 +228,9 @@ h1, } /* Sidebar navigation */ .nav-sidebar { - width: 100%; + width: 100%; + height: calc(97vh - 90px); + overflow-y: auto; } .nav-sidebar > li > a { padding: 0.3em;