修复标签颜色和样式

This commit is contained in:
lutinglt
2025-07-07 14:31:39 +08:00
parent 5116ca5cae
commit 4b2916a75b
6 changed files with 57 additions and 3 deletions

View File

@@ -8,6 +8,20 @@ export const label = css`
&.ui.ui.ui {
&.label {
border-radius: 25px;
// 多个标签的组合标签的圆角修复
&.scope-parent {
.scope-left {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.scope-middle {
border-radius: 0;
}
.scope-right {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
}
/* 主色调标签 */
&.primary {
background-color: unset;

View File

@@ -158,6 +158,9 @@ export const secondaryMenu = css`
margin-bottom: 0.5rem !important;
}
}
.item {
font-weight: 400; // 二级导航栏不需要加粗
}
.active.item,
.dropdown.item,
.link.item,