Move Tracker Detection and Signal Distribution to left of radar

- Restructured layout to put side panels (Tracker Detection, Signal
  Distribution) on the left side of the Proximity Radar
- Side panels now stack vertically with fixed 220px width
- Radar takes remaining horizontal space
- Fixes radar being cut off at bottom
- Fixes signal distribution content being cut off

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Smittix
2026-01-21 20:19:33 +00:00
parent 226f08f62d
commit 9dccbb95e8
2 changed files with 74 additions and 60 deletions

View File

@@ -3277,6 +3277,27 @@ header h1 .tagline {
min-width: 0;
}
.bt-main-area {
display: flex;
gap: 12px;
flex: 1;
min-height: 0;
}
.bt-side-panels {
display: flex;
flex-direction: column;
gap: 12px;
width: 220px;
flex-shrink: 0;
}
.bt-side-panel {
flex: 1;
min-height: 0;
overflow: hidden;
}
.bt-radar-panel {
flex: 1;
min-height: 0;
@@ -3289,19 +3310,9 @@ header h1 .tagline {
flex: 1;
min-height: 0;
overflow: hidden;
}
.bt-bottom-panels {
display: flex;
gap: 12px;
flex-shrink: 0;
max-height: 120px;
}
.bt-compact-panel {
flex: 1;
min-width: 0;
overflow: hidden;
align-items: center;
justify-content: center;
}
/* Bluetooth Device Detail Panel */