From 3cb53e6f9bce798fbf32249c98928c1f718a14d2 Mon Sep 17 00:00:00 2001 From: "2569718930@qq.com" <2569718930@qq.com> Date: Tue, 3 Mar 2026 22:40:27 +0800 Subject: [PATCH] style: fix text truncation overflow in risk info section for tablet (add word-break) --- web/static/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/static/style.css b/web/static/style.css index e65671d5..fa6893e2 100644 --- a/web/static/style.css +++ b/web/static/style.css @@ -747,6 +747,8 @@ body { font-size: 12px; color: var(--text-secondary); line-height: 1.8; + word-break: break-word; /* 确保数字和英文长句也能折行 */ + white-space: normal; } .risk-info .risk-row { display: flex;