diff --git a/docs/docsource/conf.py b/docs/docsource/conf.py index cb5d59e..c583bf4 100644 --- a/docs/docsource/conf.py +++ b/docs/docsource/conf.py @@ -54,7 +54,9 @@ } html_static_path = ['_static'] html_sidebars = {"**": ["globaltoc.html", "localtoc.html", "searchbox.html"]} - +html_css_files = [ + 'custom.css', +] # autodoc_default_options = { # 'undoc-members': True, # #'special-members': True diff --git a/docs/docsource/custom.css b/docs/docsource/custom.css new file mode 100644 index 0000000..faea178 --- /dev/null +++ b/docs/docsource/custom.css @@ -0,0 +1,3 @@ +.wy-nav-content { + max-width: 75% !important; +} \ No newline at end of file