diff --git a/VERSION b/VERSION
index 9dce8a9..62cc622 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.2.52
+1.2.53
diff --git a/management-ui/src/App.tsx b/management-ui/src/App.tsx
index ee5471c..cad1378 100644
--- a/management-ui/src/App.tsx
+++ b/management-ui/src/App.tsx
@@ -62,6 +62,16 @@ const antdTheme = {
colorTextSecondary: '#64748B',
controlHeight: 34,
},
+ components: {
+ Tabs: {
+ itemColor: '#334155',
+ itemHoverColor: '#0F172A',
+ itemSelectedColor: '#0EA5E9',
+ inkBarColor: '#0EA5E9',
+ titleFontSize: 13,
+ horizontalItemPadding: '10px 18px',
+ },
+ },
}
function RequireAuth({ children }: { children: ReactNode }) {
diff --git a/management-ui/src/pages/Firewall/index.tsx b/management-ui/src/pages/Firewall/index.tsx
index 950e438..8b9b484 100644
--- a/management-ui/src/pages/Firewall/index.tsx
+++ b/management-ui/src/pages/Firewall/index.tsx
@@ -1,4 +1,4 @@
-import { ConfigProvider, Space, Tag, Tabs } from 'antd'
+import { Space, Tag, Tabs } from 'antd'
import { CheckCircleOutlined, CloseCircleOutlined, FireOutlined, SafetyOutlined } from '@ant-design/icons'
import { useTranslation } from 'react-i18next'
import { useQuery } from '@tanstack/react-query'
@@ -125,16 +125,7 @@ export default function FirewallPage() {
)}
/>
-
-
-
+
)
}