From 0de62aa63d5c93121376219a290f59434d636d79 Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Tue, 12 Jul 2022 15:40:14 -0700 Subject: [PATCH] Add `overflow-wrap: break-word;` to post_body CSS This will cause long, unbroken posts to wrap. Signed-off-by: Alek Ratzloff --- board/static/board/style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/board/static/board/style.css b/board/static/board/style.css index 97335fe..b448608 100644 --- a/board/static/board/style.css +++ b/board/static/board/style.css @@ -68,7 +68,10 @@ th { /******************************************************************************* Posts ********************************************************************************/ -/*.post_body { }*/ +.post_body { + overflow-wrap: break-word; +} + .post_image_info { font-size: small; padding-bottom: 5px;