mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-07-30 15:21:02 +00:00
Co-authored-by: 夏姜 <wenfengjiang.jwf@digital-engine.com> Co-authored-by: yhjun1026 <460342015@qq.com> Co-authored-by: aries_ckt <916701291@qq.com> Co-authored-by: wb-lh513319 <wb-lh513319@alibaba-inc.com>
20 lines
585 B
CSS
20 lines
585 B
CSS
/* 在全局 CSS 文件中 */
|
|
/* 选择 Ant Design Tabs 组件的 tab 栏 */
|
|
.ant-tabs-nav {
|
|
@apply bg-[#edf8fb] backdrop-filter backdrop-blur-lg dark:border-[#6f7f95] dark:bg-[#6f7f95] dark:bg-opacity-60 h-14 px-6;
|
|
}
|
|
.ant-tabs-nav::before {
|
|
@apply dark:border-[#6f7f95];
|
|
}
|
|
.ant-tabs-tab {
|
|
@apply dark:text-slate-400;
|
|
}
|
|
/* 选择被激活的 Ant Design Tabs 组件的 tab */
|
|
.ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
|
|
@apply dark:text-white;
|
|
}
|
|
.ant-tabs-ink-bar {
|
|
@apply dark:bg-white;
|
|
}
|
|
/* 你可能需要添加更多的自定义样式,取决于你的需求 */
|