From 04ac227227bcaa4a7d4471743365ea952232564b Mon Sep 17 00:00:00 2001 From: Damian Birchler Date: Tue, 30 Jan 2024 00:09:10 +0100 Subject: [PATCH] Use more of the available screen space. --- doc/conf.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index d070afd..9e185c5 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -35,8 +35,11 @@ templates_path = ["_templates"] exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] - # -- Options for HTML output ------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output html_theme = "alabaster" + +html_theme_options = { + "page_width": "95%", +}