From c608595aa79767c860a086a75624f6d072d15902 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 1309a36586ea..f0e50be40b4c 100644 --- a/src/common/gui/main-styles.ts +++ b/src/common/gui/main-styles.ts @@ -602,7 +602,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",