Skip to content

Commit 7700126

Browse files
Increase page max width to show more content when possible (#5523)
Signed-off-by: Christophe Bedard <[email protected]>
1 parent e881f59 commit 7700126

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

conf.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -169,11 +169,14 @@
169169
# Add any paths that contain custom static files (such as style sheets) here,
170170
# relative to this directory. They are copied after the builtin static files,
171171
# so a file named "default.css" will overwrite the builtin "default.css".
172-
# html_static_path = ['_static']
172+
html_static_path = ['source/_static']
173173

174174
# Drop any source link suffix
175175
html_sourcelink_suffix = ''
176176

177+
# Relative to html_static_path
178+
html_css_files = ['custom.css']
179+
177180
# -- Options for HTMLHelp output ------------------------------------------
178181

179182
# Output file base name for HTML help builder.

source/_static/custom.css

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.wy-nav-content {
2+
max-width: 64rem;
3+
}

0 commit comments

Comments
 (0)