diff --git a/src/components/Activity.tsx b/src/components/Activity.tsx index 2b3079e..26a64b0 100644 --- a/src/components/Activity.tsx +++ b/src/components/Activity.tsx @@ -10,8 +10,8 @@ import mempoolTxUrl from '~/utils/mempoolTxUrl'; const THREE_COLUMNS = 'grid grid-cols-[auto,1fr,auto] gap-4 py-2 px-2 border-b border-neutral-800 last:border-b-0' const CENTER_COLUMN = 'min-w-0 overflow-hidden max-w-full' -const MISSING_LABEL = 'py-1 px-2 bg-m-red rounded inline-block text-sm' -const RIGHT_COLUMN = 'flex flex-col items-right text-right' +const MISSING_LABEL = 'py-1 px-2 bg-white/10 rounded inline-block text-sm' +const RIGHT_COLUMN = 'flex flex-col items-right text-right max-w-[8rem]' type OnChainTx = { txid: string @@ -19,8 +19,10 @@ type OnChainTx = { sent: number fee?: number confirmation_time?: { - height: number - timestamp: number + "Confirmed": { + height: number + time: number + } } } @@ -53,7 +55,7 @@ function OnChainItem(props: { item: OnChainTx }) {