diff --git a/src/pages/basicDashboard/Overview.vue b/src/pages/basicDashboard/Overview.vue index 40d650c..2625b73 100644 --- a/src/pages/basicDashboard/Overview.vue +++ b/src/pages/basicDashboard/Overview.vue @@ -2,73 +2,94 @@

Overview

diff --git a/src/styles/basicDashboard.css b/src/styles/basicDashboard.css index 34959a9..f789bb8 100644 --- a/src/styles/basicDashboard.css +++ b/src/styles/basicDashboard.css @@ -67,7 +67,7 @@ max-width: 730px; li { - display: inherit; + display: flex; flex-direction: column; align-items: center; justify-content: center; @@ -77,10 +77,6 @@ width: 230px; border-radius: 20px; cursor: pointer; - transition: 0.3s background-color; - } - li:hover { - background-color: var(--dark-alt-highlight-color); } img { width: 80px; @@ -93,6 +89,7 @@ span { width: 100%; height: 30px; + margin-top: 5px; background-color: var(--neutral-indicator); border-radius: var(--alt-border-radius); text-align: center; diff --git a/src/styles/main.css b/src/styles/main.css index 64ddbf9..296e52c 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -108,4 +108,16 @@ a { align-items: center; justify-content: center; flex-grow: 1; +} + +.good-indicator { + background-color: var(--good-indicator) !important; +} + +.warning-indicator { + background-color: var(--warning-indicator) !important; +} + +.bad-indicator { + background-color: var(--bad-indicator) !important; } \ No newline at end of file