mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Fix horizontal scrollbar on changelog, refs #828
This commit is contained in:
parent
f3951539f1
commit
d828abadde
2 changed files with 8 additions and 0 deletions
3
docs/_static/css/custom.css
vendored
Normal file
3
docs/_static/css/custom.css
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
a.external {
|
||||||
|
overflow-wrap: anywhere;
|
||||||
|
}
|
||||||
|
|
@ -99,6 +99,11 @@ html_theme = "sphinx_rtd_theme"
|
||||||
# so a file named "default.css" will overwrite the builtin "default.css".
|
# so a file named "default.css" will overwrite the builtin "default.css".
|
||||||
html_static_path = ["_static"]
|
html_static_path = ["_static"]
|
||||||
|
|
||||||
|
html_css_files = [
|
||||||
|
"css/custom.css",
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
# Custom sidebar templates, must be a dictionary that maps document names
|
# Custom sidebar templates, must be a dictionary that maps document names
|
||||||
# to template names.
|
# to template names.
|
||||||
#
|
#
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue