- Stats cards compacter with smaller font and padding - Battery status with Bootstrap Icons and color coding - Version displayed in navbar from config - Map fits all nodes on open with invalidateSize Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
488 B
CSS
26 lines
488 B
CSS
.status-dot {
|
|
display: inline-block;
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 50%;
|
|
background: var(--bs-danger);
|
|
}
|
|
|
|
.status-dot.connected {
|
|
background: var(--bs-success);
|
|
box-shadow: 0 0 6px var(--bs-success);
|
|
}
|
|
|
|
.table-responsive::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
|
|
.table-responsive::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
.table-responsive::-webkit-scrollbar-thumb {
|
|
background: var(--bs-border-color);
|
|
border-radius: 3px;
|
|
}
|