From 696266717148707375314d38e35b437845888c76 Mon Sep 17 00:00:00 2001 From: Supra4E8C Date: Sun, 23 Nov 2025 17:15:40 +0800 Subject: [PATCH] style: increase max-height for key list to display more records at once --- styles.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 7fe64ef..f597832 100644 --- a/styles.css +++ b/styles.css @@ -1548,7 +1548,8 @@ input:checked+.slider:before { /* 列表样式 */ .key-list { - max-height: 400px; + /* 便于一次展示 6 条密钥记录(约 6*80px 高度) */ + max-height: 520px; overflow-y: auto; }