From 6f7cfa82b5c591ea47e5556f14c33067d09be391 Mon Sep 17 00:00:00 2001 From: tamaina Date: Wed, 8 Feb 2023 09:50:34 +0000 Subject: fix(client): 通知のノート表示で_nowrapが効いていない問題を修正 Fix #9834 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/style.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'packages/frontend/src') diff --git a/packages/frontend/src/style.scss b/packages/frontend/src/style.scss index bacdc967d8..88e15abdbf 100644 --- a/packages/frontend/src/style.scss +++ b/packages/frontend/src/style.scss @@ -157,9 +157,9 @@ hr { } ._nowrap { - white-space: pre; - word-wrap: normal; // https://codeday.me/jp/qa/20190424/690106.html - overflow: clip; + white-space: pre !important; + word-wrap: normal !important; // https://codeday.me/jp/qa/20190424/690106.html + overflow: hidden; text-overflow: ellipsis; } -- cgit v1.2.3-freya