MeshDD-Bot/static/css/style.css
ppfeiffer 0dbb1e0184 feat: Smaller stat cards, battery icons, version in navbar, map fit
- 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>
2026-02-15 14:17:15 +01:00

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;
}