diff options
| author | gamerdonkey | 2020-08-11 11:26:25 -0500 |
|---|---|---|
| committer | gamerdonkey | 2020-08-11 11:26:25 -0500 |
| commit | 0d188178dc8fa9971c24b271a54e17ff495e3838 (patch) | |
| tree | 544526e5957406f932e9ca30e28b344f7232d600 | |
| parent | 0653bb3ab9709272235560a5242655f47949797c (diff) | |
| download | gamerdonkey.com-blog-0d188178dc8fa9971c24b271a54e17ff495e3838.tar.gz gamerdonkey.com-blog-0d188178dc8fa9971c24b271a54e17ff495e3838.tar.bz2 gamerdonkey.com-blog-0d188178dc8fa9971c24b271a54e17ff495e3838.zip | |
Quick fix for overflow on mobile in code blocks.
| -rw-r--r-- | themes/gamerdonkey-theme/static/css/native.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/gamerdonkey-theme/static/css/native.css b/themes/gamerdonkey-theme/static/css/native.css index 324d7e7..63ea4f1 100644 --- a/themes/gamerdonkey-theme/static/css/native.css +++ b/themes/gamerdonkey-theme/static/css/native.css @@ -1,5 +1,5 @@ .highlight .hll { background-color: #404040 } -.highlight { background: #202020; color: #d0d0d0 } +.highlight { background: #202020; color: #d0d0d0; overflow: auto } .highlight .c { color: #999999; font-style: italic } /* Comment */ .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ .highlight .esc { color: #d0d0d0 } /* Escape */ |
