From 7afdf3e70c90af6b5844d4862f2b9cba02f848f9 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Thu, 3 Apr 2025 12:35:07 +0300 Subject: [PATCH] fix user handle wrap --- src/components/status/status.scss | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/status/status.scss b/src/components/status/status.scss index e43617ecd..9a2885122 100644 --- a/src/components/status/status.scss +++ b/src/components/status/status.scss @@ -92,8 +92,10 @@ a { display: inline-block; - overflow-wrap: break-word; - text-wrap: pretty; + white-space: nowrap; + text-overflow: ellipsis; + overflow-x: hidden; + width: 100% } } @@ -101,6 +103,7 @@ min-width: 1.6em; margin-right: 0.4em; white-space: nowrap; + overflow-wrap: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1 1 0;