From 28943c55bd2ae904c583e9dd45229507f28e57d4 Mon Sep 17 00:00:00 2001 From: Gigi Date: Fri, 17 Oct 2025 12:46:21 +0200 Subject: [PATCH] style(debug): update ciphertext and plaintext display to match logs textbox style --- src/components/Debug.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/components/Debug.tsx b/src/components/Debug.tsx index 09d6ec5f..6d62b31f 100644 --- a/src/components/Debug.tsx +++ b/src/components/Debug.tsx @@ -171,10 +171,9 @@ const Debug: React.FC = () => { } const CodeBox = ({ value }: { value: string }) => ( -
{value || '—'}
+
+ {value || '—'} +
) const getLiveTiming = (mode: 'nip44' | 'nip04', type: 'encrypt' | 'decrypt') => {