From 2aa90d42451dc64c84efcc4f40a1b6c8d1ef1e8d Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Fri, 13 Jan 2023 10:27:30 +0000 Subject: [PATCH] Add scrollbar to documentation's left sidebar --- docs/_static/css/custom.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/_static/css/custom.css b/docs/_static/css/custom.css index 4165671..f90da5e 100644 --- a/docs/_static/css/custom.css +++ b/docs/_static/css/custom.css @@ -1,3 +1,8 @@ .py.class, .py.function, .py.method, .py.property { margin-top: 20px; } + +div.sphinxsidebar { + max-height: 100%; + overflow-y: auto; +}