Skip to content

Commit c90f818

Browse files
committed
Added style sheet to docs to set table width
1 parent 1845399 commit c90f818

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

docs/_static/styles.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
table {
2+
width: 100%;
3+
border-collapse: collapse; /* Optional: collapses borders for a cleaner look */
4+
}
5+
th, td {
6+
border: 1px solid black; /* Optional: adds borders to cells */
7+
padding: 5px; /* Optional: adds padding to cells */
8+
}

docs/conf.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919

2020
exclude_patterns = ['_build']
2121
html_static_path = ['_static']
22+
html_css_files = [
23+
'styles.css',
24+
]
2225

2326
##### Guzzle sphinx theme
2427

0 commit comments

Comments
 (0)