From 77b60af19fa6011b3c2996cbee16fbd9d1f24bff Mon Sep 17 00:00:00 2001 From: wh1te909 Date: Sun, 27 Jun 2021 01:15:47 +0000 Subject: [PATCH] style changes --- quasar.conf.js | 2 +- src/App.vue | 2 +- src/components/modals/logs/PendingActions.vue | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/quasar.conf.js b/quasar.conf.js index 0ba4552..9b42594 100644 --- a/quasar.conf.js +++ b/quasar.conf.js @@ -90,7 +90,7 @@ module.exports = function () { actions: [{ icon: "close", color: "white" }] }, loading: { - delay: 100 + delay: 50 } } }, diff --git a/src/App.vue b/src/App.vue index 26ef11b..2087333 100644 --- a/src/App.vue +++ b/src/App.vue @@ -68,7 +68,7 @@ export default { background-color: #c9e6ff .highlight-dark - background-color: #343434 + background-color: #404040 .action-completed background-color: $positive diff --git a/src/components/modals/logs/PendingActions.vue b/src/components/modals/logs/PendingActions.vue index 908e899..f820358 100644 --- a/src/components/modals/logs/PendingActions.vue +++ b/src/components/modals/logs/PendingActions.vue @@ -214,6 +214,8 @@ export default { return this.$q.dark.isActive ? "highlight-dark" : "highlight"; } else if (status === "completed") { return "action-completed"; + } else { + return ""; } }, },