From bece6a5d44048303ff105e4fb4a18f090dd50d31 Mon Sep 17 00:00:00 2001 From: maia tillie arson crimew Date: Tue, 23 Nov 2021 01:48:53 +0100 Subject: [PATCH] Fix chat message overflow wrapping --- frontend/create.html | 2 +- frontend/index.html | 2 +- frontend/styles.css | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/frontend/create.html b/frontend/create.html index f408e3e..66b242a 100644 --- a/frontend/create.html +++ b/frontend/create.html @@ -3,7 +3,7 @@ watch party :D - + diff --git a/frontend/index.html b/frontend/index.html index 10b393a..1ee7ea4 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -3,7 +3,7 @@ watch party :D - + diff --git a/frontend/styles.css b/frontend/styles.css index 35bf64d..e2ca53d 100644 --- a/frontend/styles.css +++ b/frontend/styles.css @@ -129,6 +129,10 @@ button.small-button { display: none; } +.chat-message { + overflow-wrap: break-word; +} + .chat-message > strong { color: rgb(126, 208, 255); }