perf(ant-tag.scss): 更新标签样式并增加字体属性更新了.ant-tag的样式,包括:- 将border-radius从2px改为4px- 添加了font-family, font-style和font-weight属性feat(add-raw-material-drawer, edit-raw-material-modal): 增加标签渲染功能
```
This commit is contained in:
rd
2025-09-18 12:16:22 +08:00
parent 465920796f
commit f9c091b03f
3 changed files with 69 additions and 6 deletions

View File

@ -1,4 +1,7 @@
.ant-tag{
border-radius: 2px;
border: none;
}
.ant-tag {
border-radius: 4px;
border: none;
font-family: $font-family-regular;
font-style: normal;
font-weight: 400;
}