feat: 添加 Unocss 支持,更新配置并引入新组件
All checks were successful
/ test (push) Successful in 27s

This commit is contained in:
mac-mini-2024
2024-11-22 00:25:34 +08:00
parent da85a6715d
commit 7a69e5755d
10 changed files with 1022 additions and 63 deletions

View File

@ -1,16 +1,16 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
/* @tailwind base; */
/* @tailwind components; */
/* @tailwind utilities; */
body {
background-color:#f3f4f6;
color:#1f2937;
background-color: #f3f4f6;
color: #1f2937;
}
@media (prefers-color-scheme: dark) {
body {
background-color:#1a202c;
color:#e5e7eb;
background-color: #1a202c;
color: #e5e7eb;
}
}