完成请求推送,但组装mes还有问题

This commit is contained in:
2026-05-04 00:33:29 +08:00
parent 7fc9e10c99
commit 2050a30a52
93 changed files with 9499 additions and 2719 deletions

View File

@@ -47,10 +47,29 @@
.sidebar-content {
flex: 1;
overflow-y: auto;
padding: var(--spacing-lg);
padding: 0; /* ✅ 移除padding滚动条作为间隔 */
min-height: 0;
}
/* ✅ 美化滚动条 - 符合主题 */
.sidebar-content::-webkit-scrollbar {
width: 8px;
}
.sidebar-content::-webkit-scrollbar-track {
background: transparent;
}
.sidebar-content::-webkit-scrollbar-thumb {
background: var(--color-scrollbar);
border-radius: 4px;
transition: all 0.2s ease;
}
.sidebar-content::-webkit-scrollbar-thumb:hover {
background: var(--color-scrollbar-hover);
}
/* Tab placeholder for empty states */
.tab-placeholder {
padding: var(--spacing-lg);