From c1e57673e230670a80b8180833aca153eb6b59aa Mon Sep 17 00:00:00 2001 From: Andinus Date: Fri, 22 May 2020 13:20:33 +0530 Subject: [PATCH] Show scrollbar on header overflow Currently the header text "tilde.insitute" will overflow on small screens, instead we ask it show scrollbar. --- tilde.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tilde.css b/tilde.css index 1db5d0a..0fe0099 100644 --- a/tilde.css +++ b/tilde.css @@ -7,6 +7,13 @@ body { font-size: 1.0em; } +pre { + display: block; + white-space: pre; + word-break: break-all; + overflow-x: auto; +} + .date { font-weight: bold; }