From e1004d218a4839fb64b484628fc06d6dfe2b887b Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 18 Oct 2020 21:04:28 +0200 Subject: [PATCH] Fix long text overflowing in task comments Fixes #270 --- src/styles/theme/content.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/styles/theme/content.scss b/src/styles/theme/content.scss index 1028956ff..bff3b893a 100644 --- a/src/styles/theme/content.scss +++ b/src/styles/theme/content.scss @@ -40,3 +40,7 @@ } } } + +.media-content { + width: calc(100% - 48px - 2em); +}