Files
DB-GPT/web/styles/globals.css
明天 d5afa6e206 Native data AI application framework based on AWEL+AGENT (#1152)
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com>
Co-authored-by: lcx01800250 <lcx01800250@alibaba-inc.com>
Co-authored-by: licunxing <864255598@qq.com>
Co-authored-by: Aralhi <xiaoping0501@gmail.com>
Co-authored-by: xuyuan23 <643854343@qq.com>
Co-authored-by: aries_ckt <916701291@qq.com>
Co-authored-by: hzh97 <2976151305@qq.com>
2024-02-07 17:43:27 +08:00

91 lines
1.6 KiB
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
body {
margin: 0;
font-family: var(--joy-fontFamily-body, var(--joy-Josefin Sans, sans-serif));
line-height: var(--joy-lineHeight-md, 1.5);
--antd-primary-color: #0069fe;
}
.light {
color: #333;
background-color: #f7f7f7;
}
.dark {
color: #f7f7f7;
background-color: #151622;
}
.dark-sub-bg {
background-color: rgb(35, 38, 44);
}
.ant-btn-primary {
background-color: var(--antd-primary-color);
}
.ant-pagination .ant-pagination-prev * {
color: var(--antd-primary-color) !important;
}
.ant-pagination .ant-pagination-next * {
color: var(--antd-primary-color) !important;
}
.ant-pagination .ant-pagination-item a {
color: rgb(176, 176, 191);
}
.ant-pagination .ant-pagination-item.ant-pagination-item-active {
background-color: var(--antd-primary-color) !important;
}
.ant-pagination .ant-pagination-item.ant-pagination-item-active a {
color: white !important;
}
table tr td {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.scrollbar-default::-webkit-scrollbar {
display: block;
width: 6px;
}
/* 自定义滚动条样式 */
::-webkit-scrollbar {
display: none;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #888;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
.dark :where(.css-dev-only-do-not-override-18iikkb).ant-tabs .ant-tabs-tab-btn {
color: white;
}
:where(.css-dev-only-do-not-override-18iikkb).ant-form-item .ant-form-item-label > label {
height: 36px;
}
@keyframes rotate {
to {
transform: rotate(360deg);
}
}
.react-flow__panel {
display: none !important;
}