| 123456789101112131415161718192021222324252627 |
- /* src/styles/index.scss */
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
-
- body, html, #app {
- height: 100%;
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
- }
-
- #app {
- display: flex;
- flex-direction: column;
- min-height: 100vh;
- }
-
- /* 主题变量 */
- :root {
- --primary-color: #2a5caa;
- --bg-color: #e6f7ff;
- --text-color: #1a3353;
- --card-bg: #d0e8ff;
- --header-bg: #2a5caa;
- --error-color: #f56c6c;
- }
|