feat(wifi): animated SVG proximity radar with sweep rotation

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
James Smith
2026-03-26 22:26:47 +00:00
parent 0dbcb175c0
commit d1d44195c1
3 changed files with 102 additions and 29 deletions

View File

@@ -3855,6 +3855,16 @@ header h1 .tagline {
.wifi-zone.mid .wifi-zone-count { color: var(--accent-yellow); }
.wifi-zone.far .wifi-zone-count { color: var(--accent-red); }
.wifi-radar-sweep {
transform-origin: 105px 105px;
animation: wifi-radar-rotate 3s linear infinite;
}
@keyframes wifi-radar-rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
/* WiFi Analysis Panel (RIGHT) */
.wifi-analysis-panel {
display: flex;