- ConfigProvider 注入全局配置(动画、表格尺寸) - CSS Variables 主题微调(页面背景、圆角、字体栈) - AppLayout Menu 支持 logo/operations/collapsed - Statistic 组件增加 color/prefix/suffix/animation - Card 组件启用 hoverShadow/headerBordered - Table 组件启用 stripe 斑马纹 - Tag 组件使用 variant="light" + shape="round" - Dialog 居中显示并设置固定宽度 - 布局样式硬编码颜色替换为 TDesign Token - UsageChart 改用 AreaChart + 渐变填充 - 更新 frontend spec 同步样式体系要求
27 lines
570 B
SCSS
27 lines
570 B
SCSS
/* 全局样式重置 */
|
|
html,
|
|
body,
|
|
#root {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
/* TDesign 主题微调 */
|
|
:root {
|
|
/* 页面背景色 */
|
|
--td-bg-color-page: #f5f7fa;
|
|
|
|
/* 圆角调大 */
|
|
--td-radius-default: 6px;
|
|
--td-radius-medium: 9px;
|
|
--td-radius-large: 12px;
|
|
--td-radius-extraLarge: 16px;
|
|
|
|
/* 系统字体栈 */
|
|
--td-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
"Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
|
|
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
}
|