Skip to content

Commit 58bf4a2

Browse files
Increase page max width to show more content when possible (#5523) (#5654)
(cherry picked from commit 7700126) Signed-off-by: Christophe Bedard <[email protected]> Co-authored-by: Christophe Bedard <[email protected]>
1 parent 432c14c commit 58bf4a2

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

conf.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,14 @@
165165
# Add any paths that contain custom static files (such as style sheets) here,
166166
# relative to this directory. They are copied after the builtin static files,
167167
# so a file named "default.css" will overwrite the builtin "default.css".
168-
# html_static_path = ['_static']
168+
html_static_path = ['source/_static']
169169

170170
# Drop any source link suffix
171171
html_sourcelink_suffix = ''
172172

173+
# Relative to html_static_path
174+
html_css_files = ['custom.css']
175+
173176
# -- Options for HTMLHelp output ------------------------------------------
174177

175178
# Output file base name for HTML help builder.

source/_static/custom.css

Lines changed: 3 additions & 0 deletions
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)