diff options
| author | Rapptz <[email protected]> | 2020-06-27 07:51:17 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2020-12-18 21:18:54 -0500 |
| commit | 022a341476c8ca627a5f8732e0e0654c7cf45203 (patch) | |
| tree | cfdce2a7a6acd076746e931b4e51e883a70d1453 /docs/_static/style.css | |
| parent | Revert "Fix table wrapping" (diff) | |
| download | discord.py-022a341476c8ca627a5f8732e0e0654c7cf45203.tar.xz discord.py-022a341476c8ca627a5f8732e0e0654c7cf45203.zip | |
Make tables scroll if they overflow.
Diffstat (limited to 'docs/_static/style.css')
| -rw-r--r-- | docs/_static/style.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/_static/style.css b/docs/_static/style.css index 66ae3a4a..87ce6072 100644 --- a/docs/_static/style.css +++ b/docs/_static/style.css @@ -804,6 +804,10 @@ dd { background-color: var(--api-entry-background); } +.table-wrapper { + overflow-x: auto; +} + table.docutils { width: 100%; } |