improve css (#615)

This commit is contained in:
Harrison Chase 2023-01-14 07:39:29 -08:00 committed by GitHub
parent 91d7fd20ae
commit 57bbc5d6da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 1 deletions

3
docs/_static/css/custom.css vendored Normal file
View File

@ -0,0 +1,3 @@
pre {
white-space: break-spaces;
}

View File

@ -94,6 +94,12 @@ html_context = {
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path: list = []
html_static_path = ["_static"]
# These paths are either relative to html_static_path
# or fully qualified paths (eg. https://...)
html_css_files = [
"css/custom.css",
]
nb_execution_mode = "off"
myst_enable_extensions = ["colon_fence"]