diff options
| author | Rapptz <[email protected]> | 2020-05-29 06:45:44 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2020-12-18 21:18:52 -0500 |
| commit | d05fd3552fcc7837da44c32a76bab4a4b9f06ceb (patch) | |
| tree | 6c18ffbeaef30425c5d2c9764752b749fdc54a56 /docs/_static/style.css | |
| parent | Fix codeblock related things with mobile responsiveness. (diff) | |
| download | discord.py-d05fd3552fcc7837da44c32a76bab4a4b9f06ceb.tar.xz discord.py-d05fd3552fcc7837da44c32a76bab4a4b9f06ceb.zip | |
Actually make overflowing have a scrollbar on mobile
Diffstat (limited to 'docs/_static/style.css')
| -rw-r--r-- | docs/_static/style.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/_static/style.css b/docs/_static/style.css index 65c4b156..d9084b4f 100644 --- a/docs/_static/style.css +++ b/docs/_static/style.css @@ -297,7 +297,7 @@ p { div.modal { position: fixed; - z-index: 1; + z-index: 10; left: 0; top: 0; width: 100%; @@ -623,6 +623,7 @@ pre { line-height: 1.5em; margin: 1.5em 0 1.5em 0; padding: 10px; + overflow-x: auto; } pre, code { |