From 2125c57501946f26cdecc52e9099a244db6c64f8 Mon Sep 17 00:00:00 2001 From: bir Date: Wed, 20 Nov 2024 11:18:03 +0100 Subject: [PATCH] Show long Url properly in mobile view. very long Url in mobile app showing in small text which is not readable. Resolved by breaking overflow text in url to multiple lines which will make link readable to user. close: #7972 Co-authored-by: ivk --- src/common/gui/main-styles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/gui/main-styles.ts b/src/common/gui/main-styles.ts index b7c38419be5e..2b1f89413521 100644 --- a/src/common/gui/main-styles.ts +++ b/src/common/gui/main-styles.ts @@ -601,7 +601,7 @@ styles.registerStyle("main", () => { "word-break": "break-all", }, ".break-word-links a": { - "word-wrap": "break-word", + "overflow-wrap": "anywhere", }, ".text-prewrap": { "white-space": "pre-wrap",