feat(ui): add auth file success/failure stats; expand list height

This commit is contained in:
hkfires
2025-10-21 21:59:08 +08:00
parent d26695da76
commit e92784f951
2 changed files with 70 additions and 6 deletions

View File

@@ -1445,12 +1445,17 @@ input:checked+.slider:before {
}
/* 列表样式 */
.key-list,
.file-list {
.key-list {
max-height: 400px;
overflow-y: auto;
}
.file-list {
/* 认证文件列表填满页面,保留版本信息空间 */
max-height: calc(100vh - 300px); /* 减去导航栏、padding和版本信息的高度 */
overflow-y: auto;
}
.provider-list {
/* 默认不限制高度,动态设置 */
}