mirror of
https://github.com/smittix/intercept.git
synced 2026-04-24 14:50:00 -07:00
Fix WiFi layout and remove redundant Target Signal panel
- Add min-height: 0 to output-panel to fix grid overflow scrolling - Add min-height: 200px to output-content for device cards visibility - Add max-height: 50vh to wifi-visuals to leave room for device list - Make wifi-visuals scrollable when content exceeds max-height - Remove Target Signal panel (redundant with Selected Device panel) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -926,6 +926,7 @@ header p {
|
||||
position: relative;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
min-height: 0; /* Allow shrinking in grid context for proper scrolling */
|
||||
}
|
||||
|
||||
.output-panel::before {
|
||||
@@ -994,6 +995,7 @@ header p {
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
font-size: 12px;
|
||||
background: var(--bg-primary);
|
||||
min-height: 200px; /* Ensure minimum space for device cards */
|
||||
}
|
||||
|
||||
.output-content::-webkit-scrollbar {
|
||||
@@ -2552,6 +2554,8 @@ header p {
|
||||
background: var(--bg-secondary);
|
||||
margin: 0 15px 10px 15px;
|
||||
border: 1px solid var(--border-color);
|
||||
max-height: 50vh; /* Limit height to leave room for device cards */
|
||||
overflow-y: auto; /* Allow scrolling within visualizations */
|
||||
}
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
|
||||
Reference in New Issue
Block a user