From 461e6ec38b2b6d41a461ae27a1a3eab94e28ea76 Mon Sep 17 00:00:00 2001 From: William Grant Date: Mon, 23 May 2022 13:39:18 +1000 Subject: [PATCH] fix: make sure to break links and not words when wrapping text --- stylesheets/_session.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stylesheets/_session.scss b/stylesheets/_session.scss index 1fdb3ce6c..4d9a23d5a 100644 --- a/stylesheets/_session.scss +++ b/stylesheets/_session.scss @@ -39,7 +39,9 @@ textarea { input, textarea { user-select: text; - word-break: break-all; + a { + word-break: break-all; + } } }