feat: 添加i18n,美化界面

This commit is contained in:
2025-03-20 02:29:01 +08:00
parent 27d9bdf54e
commit c206add7eb
56 changed files with 2743 additions and 928 deletions

View File

@@ -1,3 +1,22 @@
:root {
--scrollbar-color: #ffbf00;
--primary-color: #ffc107;
--secondary-color: #ffa000;
}
#root {
width: 100%;
height: 100%;
}
#ai-bot-root {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: -100px;
z-index: 9999;
pointer-events: none;
}
.scrollbar {
scrollbar-width: thin;
scrollbar-color: var(--scrollbar-color) #fff;
@@ -15,5 +34,4 @@
.scrollbar::-webkit-scrollbar-track {
background: #fff;
}
}