perf:优化webui交互体验,优化统计逻辑,优化log展示

This commit is contained in:
SengokuCola
2026-05-07 00:05:35 +08:00
parent 1bb6f514e7
commit 5846f6e0c4
41 changed files with 1723 additions and 619 deletions

View File

@@ -101,6 +101,30 @@
}
/* JetBrains Mono 字体 - 用于代码编辑器 */
@keyframes config-tab-enter {
from {
opacity: 0;
transform: translateX(-0.5rem);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes config-tab-content-enter {
from {
opacity: 0;
transform: translateX(0.375rem);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@font-face {
font-family: 'JetBrains Mono';
src: url('/fonts/JetBrainsMono-Medium.ttf') format('truetype');