diff options
author | Ev Bogue <ev@evbogue.com> | 2019-04-07 20:26:59 -0500 |
---|---|---|
committer | Ev Bogue <ev@evbogue.com> | 2019-04-07 20:26:59 -0500 |
commit | 51a490d2512ce7b7633397d7c1e29d2214c30a2c (patch) | |
tree | e7dbaadf05896b04108f7008453acb51148c0dda /css | |
parent | dd8220f7256dd55393d140e70473ae5ce423bb8a (diff) |
break long words (such as public keys) on mobile
Diffstat (limited to 'css')
-rw-r--r-- | css/style.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/css/style.css b/css/style.css index cf8c75b..1969e35 100644 --- a/css/style.css +++ b/css/style.css @@ -2,6 +2,9 @@ body { font-family: 'Source Sans Pro'; background: #222; color: #f5f5f5; + overflow-wrap: break-word; + word-wrap: break-word; + word-break: break-word; } p { |