From f61278afcbc8126bc28c703a629c2c2182352a60 Mon Sep 17 00:00:00 2001 From: Jamie Kyle <113370520+jamiebuilds-signal@users.noreply.github.com> Date: Thu, 25 Apr 2024 11:05:16 -0700 Subject: [PATCH] Improve text wrapping of links in messages --- stylesheets/_modules.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stylesheets/_modules.scss b/stylesheets/_modules.scss index 8813ff338e50..88a9a45d04c6 100644 --- a/stylesheets/_modules.scss +++ b/stylesheets/_modules.scss @@ -1106,6 +1106,9 @@ $message-padding-horizontal: 12px; a { text-decoration: underline; outline: none; + // Allow links to be broken anywhere so they don't force extra line breaks + // when surrounded by text. + word-break: break-all; @include light-theme { color: $color-white-alpha-90;