From 2679527cce2f3ffe061087fb0e21832f9a65c0b0 Mon Sep 17 00:00:00 2001 From: 0xJacky Date: Fri, 1 Dec 2023 21:30:05 +0800 Subject: [PATCH] fix(style): dark mode style --- app/index.html | 4 + app/src/App.vue | 65 ++++++- app/src/components/PageHeader/PageHeader.vue | 2 +- .../StdDataEntry/components/StdSelector.vue | 2 - app/src/layouts/BaseLayout.vue | 158 +++++------------- app/src/routes/index.ts | 1 - app/src/views/config/InspectConfig.vue | 1 - app/src/views/domain/cert/IssueCert.vue | 5 + .../domain/cert/components/ObtainCert.vue | 76 +++++---- app/src/views/domain/components/Deploy.vue | 8 +- .../views/domain/components/RightSettings.vue | 8 +- .../views/domain/ngx_conf/NgxConfigEditor.vue | 7 +- app/src/views/other/Install.vue | 141 ++++++++-------- app/src/views/other/Login.vue | 119 +++++++------ 14 files changed, 302 insertions(+), 295 deletions(-) diff --git a/app/index.html b/app/index.html index cb6d58a3..2a96e095 100644 --- a/app/index.html +++ b/app/index.html @@ -9,6 +9,10 @@ height: auto !important; min-height: 100%; } + body.dark { + background-color: #141414; + color: #fff; + } #app { height: 100%; } diff --git a/app/src/App.vue b/app/src/App.vue index f27b4070..77dd67a9 100644 --- a/app/src/App.vue +++ b/app/src/App.vue @@ -3,6 +3,11 @@ // This starter template is using Vue 3