From 5315844601bc23d79b2acfe5a08dd7c3d6dc4766 Mon Sep 17 00:00:00 2001 From: Corentin Mercier Date: Mon, 15 Apr 2024 00:58:16 +0700 Subject: [PATCH] Remove footer --- docs/_static/custom.css | 3 +++ docs/conf.py | 3 +++ 2 files changed, 6 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 00000000..7695b492 --- /dev/null +++ b/docs/_static/custom.css @@ -0,0 +1,3 @@ +.sy-foot { + display: none; +} diff --git a/docs/conf.py b/docs/conf.py index 13864405..32e59549 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -132,6 +132,9 @@ "github_url": "https://github.com/pybitcash/bitcash", } +# Custom CSS +html_css_files = ["custom.css"] + # -- Options for HTMLHelp output ------------------------------------------