From 669f701fd315eca6b97243f4c1d692764053cac0 Mon Sep 17 00:00:00 2001 From: Paul Kaplan Date: Tue, 11 May 2021 11:33:49 -0400 Subject: [PATCH] Fix wrapping on long activity text --- src/views/studio/studio.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/views/studio/studio.scss b/src/views/studio/studio.scss index 6f8171a3d..2e6db272d 100644 --- a/src/views/studio/studio.scss +++ b/src/views/studio/studio.scss @@ -247,6 +247,13 @@ $radius: 8px; .studio-activity-icon { opacity: 1; } + /* Ensure that line breaks occur only the message text, not in the flex layout or date */ + .social-message-date { + white-space: nowrap; + } + .flex-row.mod-social-message { + flex-wrap: nowrap; + } } /* Modification classes for different interaction states */