Skip to content

Commit

Permalink
Merge pull request #770 from readthedocs/fix-docs
Browse files Browse the repository at this point in the history
Don't overwrite CSS files
  • Loading branch information
davidfischer committed Jul 12, 2023
2 parents bd0a8bf + cc66bb8 commit 1ec7719
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,12 @@
#
# html_sidebars = {}

html_context = {"css_files": ["_static/css/custom.css"]}
html_css_files = [
"_static/css/custom.css",
]

html_js_files = []

if not os.environ.get("READTHEDOCS", False):
# The client is needed just for styling some of the sample ad blocks
# Ads aren't loaded on these docs outside of RTD
Expand Down

0 comments on commit 1ec7719

Please sign in to comment.