feat: antd组件库相关样式

This commit is contained in:
rd
2025-09-08 09:16:10 +08:00
parent 3573d29285
commit 67e8196ce9
17 changed files with 786 additions and 9 deletions

View File

@ -0,0 +1,49 @@
.ant-tabs {
.ant-tabs-nav {
margin-bottom: 0;
padding: 0 24px;
.ant-tabs-nav-wrap {
height: 40px;
.ant-tabs-nav-list {
.ant-tabs-tab {
.ant-tabs-tab-btn {
color: var(--Text-2, #55585f);
font-family: $font-family-regular;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px;
}
&.ant-tabs-tab-active {
.ant-tabs-tab-btn {
color: var(--Brand-6, #6d4cfe);
font-weight: 500;
font-family: $font-family-medium;
text-shadow: none;
}
}
}
.ant-tabs-ink-bar {
background: #6d4cfe;
}
}
}
}
.ant-tabs-content-holder {
display: none;
}
&.ant-tabs-small {
.ant-tabs-nav {
.ant-tabs-nav-wrap {
height: 32px;
}
}
}
&.ant-tabs-large {
.ant-tabs-nav {
.ant-tabs-nav-wrap {
height: 48px;
}
}
}
}