优化监控中心样式

This commit is contained in:
fks-yangshouda
2024-08-15 16:25:13 +08:00
parent a47f8ae50f
commit df589c5a8e
3 changed files with 63 additions and 4 deletions

View File

@@ -446,4 +446,23 @@
queryDeviceInfoListPage();
});
</script>
<style lang="less" scoped></style>
<style lang="less" scoped>
::v-deep .ant-tabs-tab {
font-weight: bold; /* 选中标签的加粗 */
// font-size: 16px;
// letter-spacing: 1.33px;
color: #666666 !important;
}
::v-deep .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
// background-color: #f0f0f0; /* 自定义选中背景色 */
// color: #1890ff; /* 自定义选中文字颜色 */
// border-radius: 5px; /* 选中标签的圆角 */
// font-weight: bold; /* 选中标签的加粗 */
color: #000000 !important;
}
::v-deep .ant-tabs-tab:hover {
color: #000000; /* 悬停时的文字颜色 */
}
</style>