codernew-api-frontend/src/pages/dashboard/workplace/style/overview.module.less
gaoziman f77675e5fc feat(核心): 添加项目源代码
- 实现 React + Arco Design Pro 基础框架
- 添加页面路由和布局组件
- 实现用户认证和权限管理
- 添加数据可视化图表组件
- 实现列表、表单等常用页面模块
- 配置 Redux 状态管理
- 添加工具函数和自定义 Hooks
2025-11-05 09:48:31 +08:00

70 lines
1.0 KiB
Plaintext

.container {
padding: 20px;
:global(.arco-divider-horizontal) {
border-bottom: 1px solid var(--color-border-1);
}
:global(.arco-divider-vertical) {
border-left: 1px solid var(--color-border-1);
}
}
.item {
display: flex;
align-items: center;
padding-left: 20px;
color: var(--color-text-1);
}
.icon {
display: flex;
align-items: center;
justify-content: center;
width: 54px;
height: 54px;
background-color: var(--color-fill-2);
border-radius: 50%;
margin-right: 12px;
}
.title {
font-size: 12px;
color: var(--color-text-1);
}
.count {
font-size: 22px;
font-weight: 600;
color: var(--color-text-1);
.unit {
font-size: 12px;
font-weight: 400;
color: var(--color-text-2);
margin-left: 8px;
}
}
.divider {
height: 60px;
}
.ctw {
display: flex;
justify-content: space-between;
margin-bottom: 16px;
}
.chart-title {
font-size: 16px;
font-weight: 500;
}
.chart-sub-title {
font-size: 12px;
font-weight: 400;
margin-left: 4px;
color: var(--color-text-3);
}