From e50bb72dc70e528ed18543a7912586ad6ea00d31 Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Sat, 25 Feb 2023 18:35:39 +0100 Subject: [PATCH] Add some more space above sections --- docs/source/_static/custom.css | 3 +++ docs/source/conf.py | 1 + 2 files changed, 4 insertions(+) create mode 100644 docs/source/_static/custom.css diff --git a/docs/source/_static/custom.css b/docs/source/_static/custom.css new file mode 100644 index 00000000..4afdc4fc --- /dev/null +++ b/docs/source/_static/custom.css @@ -0,0 +1,3 @@ +body article section { + margin-top: 1.8em; +} diff --git a/docs/source/conf.py b/docs/source/conf.py index 00343e73..c2851227 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -47,6 +47,7 @@ exclude_patterns = [] html_theme = "furo" html_static_path = ["_static"] +html_css_files = ["custom.css"] html_theme_options = { "light_logo": "novelwriter-light.png", "dark_logo": "novelwriter-dark.png",