diff options
author | Vitaly Takmazov | 2017-06-06 14:38:43 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-06-06 14:38:55 +0300 |
commit | e39cbdf1378ff32f9b164046cc7d416dd8f0d57d (patch) | |
tree | 9afc5c3f785f533bac13b84ef632f4be4db6db71 | |
parent | 4089af518bcc67f532882373debfb0374cc4ca59 (diff) |
www: fix pre overflow
-rw-r--r-- | juick-www/src/main/static/style.css | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/juick-www/src/main/static/style.css b/juick-www/src/main/static/style.css index fd81070b..afd62c7e 100644 --- a/juick-www/src/main/static/style.css +++ b/juick-www/src/main/static/style.css @@ -34,11 +34,8 @@ hr { margin: 10px 0; } pre { - white-space: pre-wrap; - white-space: -moz-pre-wrap; - white-space: -pre-wrap; - white-space: -o-pre-wrap; - word-wrap: break-word; + white-space: pre; + overflow-x: auto; } .u { text-decoration: underline; |