diff --git a/frontend/src/components/MessageList.tsx b/frontend/src/components/MessageList.tsx index d4ad387..650ed0e 100644 --- a/frontend/src/components/MessageList.tsx +++ b/frontend/src/components/MessageList.tsx @@ -117,8 +117,8 @@ function HopCountBadge({ paths, onClick, variant }: HopCountBadgeProps) { const className = variant === 'header' - ? 'font-normal text-muted-foreground/70 ml-1 text-[11px] cursor-pointer hover:text-primary hover:underline' - : 'text-[10px] text-muted-foreground/50 ml-1 cursor-pointer hover:text-primary hover:underline'; + ? 'font-normal text-muted-foreground ml-1 text-[11px] cursor-pointer hover:text-primary hover:underline' + : 'text-[10px] text-muted-foreground ml-1 cursor-pointer hover:text-primary hover:underline'; return ( + {formatTime(msg.sender_timestamp || msg.received_at)} {!msg.outgoing && msg.paths && msg.paths.length > 0 && ( @@ -446,7 +446,7 @@ export function MessageList({ ))} {!showAvatar && ( <> - + {formatTime(msg.sender_timestamp || msg.received_at)} {!msg.outgoing && msg.paths && msg.paths.length > 0 && ( diff --git a/frontend/src/components/PathModal.tsx b/frontend/src/components/PathModal.tsx index fbce3f9..af79ea4 100644 --- a/frontend/src/components/PathModal.tsx +++ b/frontend/src/components/PathModal.tsx @@ -69,7 +69,7 @@ export function PathModal({ open, onClose, paths, senderInfo, contacts, config } return (
Path {index + 1}:{' '} - {rawPath} + {rawPath}
); })} @@ -305,7 +305,7 @@ function HopNode({ hop, hopNumber, prevLocation }: HopNodeProps) { {isUnknown ? ( -
<UNKNOWN>
+
<UNKNOWN>
) : isAmbiguous ? (
{hop.matches.map((contact) => { @@ -366,7 +366,7 @@ function CoordinateLink({ lat, lon, publicKey }: { lat: number; lon: number; pub return ( diff --git a/frontend/src/components/RawPacketList.tsx b/frontend/src/components/RawPacketList.tsx index 3cf0a62..21e2508 100644 --- a/frontend/src/components/RawPacketList.tsx +++ b/frontend/src/components/RawPacketList.tsx @@ -155,7 +155,7 @@ function getRouteTypeColor(routeType: string): string { case 'Transport Direct': return 'bg-orange-500/20 text-orange-400'; default: - return 'bg-gray-500/20 text-gray-400'; + return 'bg-muted text-muted-foreground'; } } @@ -238,7 +238,7 @@ export function RawPacketList({ packets }: RawPacketListProps) { )} {/* Raw hex data (always visible) */} -
+
{packet.data.toUpperCase()}
diff --git a/frontend/src/components/StatusBar.tsx b/frontend/src/components/StatusBar.tsx index 36f7774..a12798a 100644 --- a/frontend/src/components/StatusBar.tsx +++ b/frontend/src/components/StatusBar.tsx @@ -39,12 +39,12 @@ export function StatusBar({ }; return ( -
+
{/* Mobile menu button - only visible on small screens */} {onMenuClick && ( )}