feat: 添加暗色模式支持,重构用户数据加载逻辑
All checks were successful
/ build-and-deploy-to-vercel (push) Successful in 1m34s
/ playwright (push) Successful in 1m47s
/ depcheck (push) Successful in 1m27s

This commit is contained in:
严浩
2024-12-20 15:28:24 +08:00
parent 89eae5bcbb
commit 50e0c5ebc6
3 changed files with 110 additions and 61 deletions

View File

@ -23,6 +23,11 @@
body {
margin: 0;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #000;
}
}
#app {
min-height: 100vh;
display: flex;