From eabcc4679bc283acdb9f87022ef1e0e82c48497e Mon Sep 17 00:00:00 2001 From: Mohammed Abdul Raheem <53348555+mdabdulraheem@users.noreply.github.com> Date: Wed, 6 Jan 2021 15:55:21 +0530 Subject: [PATCH] Add scrolling to documentation sidebar (#610) --- docs/_static/custom.css | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 docs/_static/custom.css diff --git a/docs/_static/custom.css b/docs/_static/custom.css new file mode 100644 index 0000000..9a86294 --- /dev/null +++ b/docs/_static/custom.css @@ -0,0 +1,5 @@ +div.sphinxsidebar { + max-height: calc(100% - 30px); + overflow-y: auto; + overflow-x: hidden; +}