Files
xiaoxia-saas/apps/web/app/globals.css
T
Xiaoxia AI 9dd36f308f
Deploy / Deploy Staging (push) Successful in 15s
Deploy / Deploy Production (push) Has been skipped
Tests / test (push) Failing after 2m39s
Tests / lint (push) Failing after 2m26s
feat: add project management frontend pages
- Home page with navigation
- Projects page with task list table
- Task status/priority/progress display
- Real-time API integration
- Responsive layout and styling
2026-06-16 12:25:37 +08:00

27 lines
472 B
CSS

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Microsoft YaHei", sans-serif;
background: #F5F7FA;
color: #1D2129;
height: 100vh;
overflow: hidden;
}
:root {
--primary: #165DFF;
--primary-hover: #0e48d1;
--border: #E5E6EB;
--bg-white: #fff;
--bg-gray: #F5F7FA;
--text-primary: #1D2129;
--text-secondary: #6E7681;
--success: #00B42A;
--warning: #FF7D00;
--error: #F53F3F;
}