From efa31433441828b3208fda09fbe3563a85d01f91 Mon Sep 17 00:00:00 2001 From: MrAlders0n Date: Wed, 29 Jul 2026 23:08:52 -0400 Subject: [PATCH] Rename map live toggle to Live Map and raise its contrast --- src/features/map/PacketFlowButton.tsx | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/features/map/PacketFlowButton.tsx b/src/features/map/PacketFlowButton.tsx index 61862cd..d1fe3e3 100644 --- a/src/features/map/PacketFlowButton.tsx +++ b/src/features/map/PacketFlowButton.tsx @@ -3,20 +3,21 @@ interface PacketFlowButtonProps { onToggle: () => void; } -// Floating play/stop control for the live packet-flow animation. Off by default; when live it shows -// a pulsing dot and accent styling. Bottom-center, clear of the corner map controls. +// Floating play/stop control for the live packet-flow animation. Off by default; keeps an accent +// border either way so it reads as a control, not decoration. Bottom-center, clear of the corner +// map controls. Labelled "Live Map" to distinguish it from the header's LIVE websocket badge. export function PacketFlowButton({ active, onToggle }: PacketFlowButtonProps) { return ( ); }