Skip to content

Commit

Permalink
fix nodeid text on dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
cstenglein committed Jun 11, 2022
1 parent 32836e0 commit d929283
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Home/ConnectionCard/ConnectionCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ export const ConnectionCard: FC<Props> = ({
<ModalDialog close={closeModalHandler}>
<div className="my-5 flex flex-col items-center justify-center">
<QRCodeSVG value={nodeId} size={256} />
<p className="mt-10 mb-3 text-sm text-gray-500">{nodeId}</p>
<p className="mt-10 mb-3 text-sm text-gray-500 dark:text-white">
{nodeId}
</p>
</div>
</ModalDialog>,
MODAL_ROOT
Expand Down

0 comments on commit d929283

Please sign in to comment.