DB-GPT/web/new-components/layout/style.css
lhwan 3a32344380
feat: web update (#1860)
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>
2024-08-22 11:05:18 +08:00

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;
}
/* 你可能需要添加更多的自定义样式,取决于你的需求 */