From a41259be27ff83a146747e04cb9f5a64b6dd7bf6 Mon Sep 17 00:00:00 2001 From: James Morris Date: Fri, 11 Nov 2022 15:31:34 +0000 Subject: [PATCH] Fix the word break for long links in comments on mobile refs https://github.com/TryGhost/Team/issues/2245 --- apps/comments-ui/src/index.css | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/comments-ui/src/index.css b/apps/comments-ui/src/index.css index 2662de83b8..534fc069b8 100644 --- a/apps/comments-ui/src/index.css +++ b/apps/comments-ui/src/index.css @@ -24,6 +24,7 @@ body { /* Links */ .gh-comment-content a { + word-break: break-word; text-decoration: underline; color: var(--gh-accent-color); }