diff --git a/docs/conf.py b/docs/conf.py index ebacb88b..a3752bce 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -95,12 +95,11 @@ def find_version(*file_paths) -> str: # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ["_static"] -html_context = { - "extra_css_files": [ - # override wide tables in RTD theme - "_static/theme_overrides.css" - ] -} +# These paths are either relative to html_static_path +# or fully qualified paths (eg. https://...) +html_css_files = [ + "theme_overrides.css", +] # Output file base name for HTML help builder. htmlhelp_basename = "PyJWTdoc"