Add configurable alarm thresholds

This commit is contained in:
root
2026-06-03 00:09:48 -06:00
parent 1cb26aff20
commit 60545739d8
2 changed files with 98 additions and 5 deletions
+33
View File
@@ -206,3 +206,36 @@ nav button {
color: #300;
font-weight: bold;
}
.settings-list {
background: #222;
border: 1px solid #333;
border-radius: 14px;
padding: 16px;
}
.settings-list label {
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
padding: 12px 0;
font-size: 1.1rem;
border-bottom: 1px solid #333;
}
.settings-list label:last-of-type {
border-bottom: none;
}
.settings-list input {
width: 90px;
font-size: 1.2rem;
padding: 10px;
border-radius: 8px;
border: 1px solid #555;
background: #111;
color: white;
text-align: center;
}