From ccc01c3c3a21eea58d88ba5b805a3ea10af63cba Mon Sep 17 00:00:00 2001 From: wangdan Date: Tue, 14 Feb 2023 15:00:03 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E9=BB=91=E8=89=B2=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/styles/element-dark.scss | 8 +++++++- frontend/src/views/login/components/login-form.vue | 2 +- frontend/vite.config.ts | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/frontend/src/styles/element-dark.scss b/frontend/src/styles/element-dark.scss index 139c65b45..8323e7858 100644 --- a/frontend/src/styles/element-dark.scss +++ b/frontend/src/styles/element-dark.scss @@ -46,6 +46,9 @@ html.dark { --el-table-border: var(--panel-border); --el-table-border-color: rgb(64, 67, 67); } + .el-message-box { + --el-messagebox-title-color: #999999; + } .el-alert--info { --el-alert-bg-color: rgb(56, 59, 59); @@ -57,7 +60,7 @@ html.dark { } .el-pagination { - --el-pagination-button-color: #999999; + --el-pagination-button-color: #999999; } // * wangEditor @@ -78,6 +81,9 @@ html.dark { background-color: #ffffff; box-shadow: 0 0 0 1px #dcdfe6 inset; } + .el-input__inner { + color: #606266; + } } } diff --git a/frontend/src/views/login/components/login-form.vue b/frontend/src/views/login/components/login-form.vue index b20128367..772560def 100644 --- a/frontend/src/views/login/components/login-form.vue +++ b/frontend/src/views/login/components/login-form.vue @@ -357,7 +357,7 @@ onMounted(() => { background: none !important; box-shadow: none !important; border-radius: 0 !important; - border-top: 1px solid #f2f2f2; + border-bottom: 1px solid #dcdfe6; } } diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index a44b9a548..12e0e622d 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -37,7 +37,7 @@ export default defineConfig(({ mode }: ConfigEnv): UserConfig => { open: viteEnv.VITE_OPEN, proxy: { '/api/v1': { - target: 'http://localhost:9999/', + target: 'http://172.16.10.181:9999/', changeOrigin: true, }, },