diff --git a/webui/src/PeerAvailableCard.tsx b/webui/src/PeerAvailableCard.tsx
index d813be9c..22a9fe1d 100644
--- a/webui/src/PeerAvailableCard.tsx
+++ b/webui/src/PeerAvailableCard.tsx
@@ -16,10 +16,6 @@ export function PeerAvailableCard({ peerInfo }: TPeerAvailableCardProps) {
UUID:
{peerInfo.uuid}
-
- Address:
- {peerInfo.knownAddress}
-
{peerInfo.uuid}
- Address:
- {peerInfo.knownAddress || "not connected"}
+ {peerInfo.knownAddress ? "connected" : "not connected"}
+ Manual address:
diff --git a/webui/src/common.scss b/webui/src/common.scss
index 6ed5338c..272babea 100644
--- a/webui/src/common.scss
+++ b/webui/src/common.scss
@@ -40,6 +40,8 @@
color: inherit;
font-size: inherit;
+ padding: 0.5rem;
+
width: 100%;
height: 100%;
}