From 7fcb7fcfedc693bd753b0dbcace75cf55e134f55 Mon Sep 17 00:00:00 2001 From: Soheb Date: Fri, 8 Jan 2021 23:08:58 +0000 Subject: [PATCH] Break word to stop it disappearing on mobile This kept happening to me but I couldn't reproduce it in the iPad Simulator. Finally got it nailed down and sorted. Tested this on Safari (mobile and desktop), Firefox, and Edge browser. --- static/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/style.css b/static/style.css index c37c8ba..4fd20d4 100644 --- a/static/style.css +++ b/static/style.css @@ -314,6 +314,10 @@ input[type="submit"]:hover { color: var(--accent); } /* Post */ +.thread { + word-break: break-word; +} + .post { border-radius: 5px; background: var(--post);