修复 #389 ;并优化了引导页面

This commit is contained in:
cc
2026-03-14 22:23:10 +08:00
parent 0a23ed6ef4
commit 641abc57b9
8 changed files with 274 additions and 67 deletions

View File

@@ -77,6 +77,7 @@
/* Unified Card Container */
.welcome-container {
position: relative;
width: 900px;
max-width: 100vw;
height: 620px;
@@ -543,6 +544,18 @@
font-size: 13px;
margin-top: 8px;
border: 1px solid rgba(0, 0, 0, 0.04);
&.is-success {
background: rgba(34, 197, 94, 0.15);
color: rgb(22, 163, 74);
border-color: rgba(34, 197, 94, 0.3);
@media (prefers-color-scheme: dark) {
background: rgba(34, 197, 94, 0.2);
color: rgb(134, 239, 172);
border-color: rgba(34, 197, 94, 0.4);
}
}
}
.error-message {
@@ -878,4 +891,4 @@
@keyframes progress-shimmer {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
}