Skip to content

Commit

Permalink
docs(style): force the autosummary to use all width (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
12rambau authored Sep 8, 2023
1 parent 0517d1b commit 669873f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/_static/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,16 @@ div.highlight-console pre span.go::before {
.injected .rst-versions.rst-badge {
display: none;
}

/* make autosummary tables use all the width available */
table.autosummary {
width: 100% !important;
}

table.autosummary tr:not(:last-child) {
white-space: nowrap !important;
}

table.autosummary td:last-child {
width: 99% !important;
}

0 comments on commit 669873f

Please sign in to comment.