新增 vue-app(生成/收藏/历史/登录/优化/Android/饭菜/诗词/简历等),Flask 增加 user_context 并调整历史、生成、简历等路由;模板 base/generate 可访问性改进;补充部署说明与文档。 Made-with: Cursor
28 lines
410 B
SCSS
28 lines
410 B
SCSS
@use 'variables' as *;
|
|
|
|
:root {
|
|
--app-bg: #f8fafc;
|
|
--primary-color: #{$primary-color};
|
|
--text-color: #{$text-color};
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family:
|
|
'Inter',
|
|
-apple-system,
|
|
BlinkMacSystemFont,
|
|
'Segoe UI',
|
|
system-ui,
|
|
sans-serif;
|
|
color: $text-color;
|
|
background: var(--app-bg);
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|