global.css
445 Bytes
/* 全局样式入口:引入仓库根 Design Tokens SSoT(D9,不在 frontend 内拷贝) */
@import '../../../src/styles/tokens.css';
* {
box-sizing: border-box;
}
html,
body,
#root {
margin: 0;
padding: 0;
height: 100%;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC',
'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
background: var(--color-bg-base);
color: var(--color-text);
}