diff options
author | Andinus <andinus@nand.sh> | 2020-05-22 13:20:33 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-06-06 22:36:34 +0530 |
commit | c1e57673e230670a80b8180833aca153eb6b59aa (patch) | |
tree | a4d6aa75be4def99695d3e3702bf292a32dcfb00 | |
parent | 0188cd93ab45daada0de18ad92bc03ad2ba09ece (diff) | |
download | site-c1e57673e230670a80b8180833aca153eb6b59aa.tar.gz |
Show scrollbar on header overflow
Currently the header text "tilde.insitute" will overflow on small screens, instead we ask it show scrollbar.
-rw-r--r-- | tilde.css | 7 |
1 files changed, 7 insertions, 0 deletions
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; } |