Added SNR and refactored types
Some checks failed
Test and build / Test and lint (push) Failing after 35s
Test and build / Build collector (push) Failing after 37s
Test and build / Build receiver (push) Failing after 37s

This commit is contained in:
2026-03-06 09:06:08 +01:00
parent e83df1c143
commit 247c827291
27 changed files with 2533 additions and 615 deletions

View File

@@ -1,5 +1,5 @@
.overview-container {
padding: 24px;
padding: 8px;
height: 100%;
overflow-y: auto;
}
@@ -8,6 +8,17 @@
margin-bottom: 32px;
}
.overview-category {
margin-bottom: 24px;
}
.overview-category-title {
font-size: 18px;
font-weight: 600;
color: var(--app-text);
margin-bottom: 12px;
}
.overview-title {
font-size: 24px;
font-weight: 700;
@@ -40,11 +51,29 @@
color: #fca5a5;
}
.overview-radios-row {
.overview-radios-rows {
display: flex;
flex-direction: column;
gap: 16px;
}
.overview-radio-col {
display: flex;
margin-bottom: 16px;
.overview-radios-row {
display: grid;
grid-template-columns: 1fr;
gap: 16px;
}
.overview-radio-item {
display: flex;
.radio-card {
width: 100%;
min-width: 0;
}
}
@media (min-width: 992px) {
.overview-radios-row {
grid-template-columns: repeat(6, minmax(0, 1fr));
}
}