feat: 重构页面结构,删除不必要的页面,添加新页面,优化暗黑主题样式
Some checks failed
/ build-and-deploy-to-vercel (push) Successful in 1m33s
/ depcheck (push) Successful in 1m7s
/ playwright (push) Failing after 2m28s

This commit is contained in:
严浩
2025-01-03 16:47:30 +08:00
parent 263f3f6dfa
commit f5c0cb8665
12 changed files with 22 additions and 168 deletions

View File

@ -1,14 +1,5 @@
@mixin dark-theme {
:root[class*='app-dark'] {
--surface-ground: var(--p-surface-950);
--code-background: var(--p-surface-800);
--code-color: var(--p-surface-100);
}
:root[class*='app-dark'] {
@include dark-theme;
}
@media (prefers-color-scheme: dark) {
:root {
@include dark-theme;
}
}