Skip to content

Commit 4ff158e

Browse files
authored
docs: fixed missed CSS (#143)
Also made Docs a bit wider Signed-off-by: Alexander Piskun <bigcat88@icloud.com>
1 parent fb8cb4e commit 4ff158e

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ All notable changes to this project will be documented in this file.
1313
### Fixed
1414

1515
- TalkAPI: In One-to-One conversations the `status_message` and `status_icon` fields were always empty.
16+
- Missing CSS styles in the documentation. #143
1617

1718
## [0.3.0 - 2023-09-28]
1819

docs/conf.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,11 @@
7171

7272
autodoc_member_order = "bysource"
7373

74+
# Add any paths that contain custom static files (such as style sheets) here,
75+
# relative to this directory. They are copied after the builtin static files,
76+
# so a file named "default.css" will overwrite the builtin "default.css".
77+
html_static_path = ["resources"]
78+
7479

7580
def setup(app):
7681
app.add_js_file("js/script.js")

docs/resources/css/styles.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,7 @@ th p {
66
font-size: 1rem;
77
margin-bottom: 0;
88
}
9+
10+
.wy-nav-content {
11+
max-width: 80% !important;
12+
}

0 commit comments

Comments
 (0)