chore: made activatable elements clickable

ref: N25B-400
This commit is contained in:
Pim Hutting
2026-01-12 19:41:05 +01:00
parent c4a4c52ecc
commit 46d900305a
3 changed files with 34 additions and 3 deletions

View File

@@ -156,6 +156,37 @@
content: '✔️ ';
}
.statusIndicator {
display: inline-block;
margin-right: 10px;
user-select: none;
transition: transform 0.1s ease;
font-size: 1.1rem;
}
.clickable {
cursor: pointer;
}
.clickable:hover {
transform: scale(1.2);
}
.active {
cursor: default;
opacity: 1;
}
.statusItem {
display: flex;
align-items: center;
margin-bottom: 0.4rem;
}
.itemDescription {
line-height: 1.4;
}
/* LOGS */
.logs {
grid-area: logs;