2
0

暗色模式适配

This commit is contained in:
lai
2025-02-21 14:26:13 +08:00
parent 6ec114fd60
commit d6b972f363

View File

@@ -82,7 +82,7 @@ const handleMenuClick = (path: string) => {
width: 100%;
min-height: 100vh;
padding: 16px;
background-color: #f5f5f7;
background-color: var(--text-color, var(--ant-text-color)); /* 使用主题变量 */
}
.billing-service-content {
@@ -103,7 +103,7 @@ const handleMenuClick = (path: string) => {
align-items: center;
justify-content: space-between;
padding: 20px;
background: #fff;
background: var(--text-color, var(--ant-text-color)); /* 使用主题变量 */
border-radius: 12px;
cursor: pointer;
transition: all 0.3s ease;