feat(app): 初始化应用路由与基础样式- 添加 about 页面并实现页面间导航

- 更新全局样式,设置背景色与文字颜色
-优化 Header 组件,美化窗口控制按钮
- 引入持久化存储工具类
- 调整 Tauri 配置,设置构建路径与窗口最小尺寸- 替换 SVG 图标文件为 sprite 形式
This commit is contained in:
Chaos
2025-11-05 17:20:53 +08:00
parent a6f4db525b
commit 7aa010c242
8 changed files with 113 additions and 36 deletions

View File

@@ -1,10 +1,9 @@
@import 'tailwindcss';
:global(body) {
body {
background-color: #1f1f1f; /* 示例:一个深灰色 */
min-height: 100vh;
min-width: 100vw;
margin: 0; /* 移除浏览器默认的 body 边距 */
margin: 0;
color: white;
}