diff --git a/routes/_components/Nav.html b/routes/_components/Nav.html
index 79aaf07..37a9d3f 100644
--- a/routes/_components/Nav.html
+++ b/routes/_components/Nav.html
@@ -59,6 +59,11 @@
a {
border-bottom: 1px solid var(--nav-a-border);
+ text-decoration: none;
+ padding: 25px 20px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
}
a.selected {
@@ -66,12 +71,9 @@
background: var(--nav-a-selected-bg);
}
- a {
- text-decoration: none;
- padding: 25px 20px;
- display: flex;
- justify-content: center;
- align-items: center;
+ a.selected:hover {
+ border-bottom: 1px solid var(--nav-a-selected-border-hover);
+ background: var(--nav-a-selected-bg-hover);
}
a:hover {
diff --git a/routes/_components/Status.html b/routes/_components/Status.html
index 2242a8d..8b818b7 100644
--- a/routes/_components/Status.html
+++ b/routes/_components/Status.html
@@ -30,7 +30,7 @@
max-width: 600px;
margin: 0 auto;
padding: 10px 0;
- border-bottom: 1px solid #ededed;
+ border-bottom: 1px solid var(--border-color);
display: grid;
width: 100%;
grid-template-areas:
@@ -84,11 +84,19 @@
border: none;
}
- .footer svg {
+ .footer button svg {
pointer-events: none;
width: 24px;
height: 24px;
- fill: #859ede;
+ fill: var(--action-button-fill-color);
+ }
+
+ .footer button:hover svg {
+ fill: var(--action-button-fill-color-hover);
+ }
+
+ .footer button:active svg {
+ fill: var(--action-button-fill-color-active);
}