Skip to content

Commit

Permalink
Added style sheet to docs to set table width
Browse files Browse the repository at this point in the history
  • Loading branch information
TomHAnderson committed Jan 5, 2025
1 parent cdd72bb commit 88fcd30
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/_static/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
table {
width: 100%;
border-collapse: collapse; /* Optional: collapses borders for a cleaner look */
}
th, td {
border: 1px solid black; /* Optional: adds borders to cells */
padding: 5px; /* Optional: adds padding to cells */
}
3 changes: 3 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@

exclude_patterns = ['_build']
html_static_path = ['_static']
html_css_files = [
'styles.css',
]

##### Guzzle sphinx theme

Expand Down

0 comments on commit 88fcd30

Please sign in to comment.