Skip to content

Commit 6348b6b

Browse files
committed
more...
1 parent 503ab74 commit 6348b6b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/modules/peers/PeerAddressCell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default function PeerAddressCell({ peer }: Props) {
3232
>
3333
<div
3434
className={cn(
35-
"flex items-center justify-center rounded-full h-8 w-8 shrink-0 bg-gray-100 dark:bg-nb-gray-920/80 transition-all",
35+
"flex items-center justify-center rounded-full h-8 w-8 shrink-0 bg-transparent dark:bg-nb-gray-920/80 transition-all",
3636
)}
3737
>
3838
{isEmpty(peer.country_code) ? (

src/modules/peers/PeerAddressTooltipContent.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,15 +119,15 @@ const ListItem = ({
119119
return (
120120
<div
121121
className={cn(
122-
"flex justify-between gap-12 border-b border-nb-gray-920 py-2 px-4 last:border-b-0",
122+
"flex justify-between gap-12 border-b border-gray-200 dark:border-nb-gray-920 py-2 px-4 last:border-b-0",
123123
className,
124124
)}
125125
>
126-
<div className={"flex items-center gap-2 text-nb-gray-100 font-medium"}>
126+
<div className={"flex items-center gap-2 text-gray-700 dark:text-nb-gray-100 font-medium"}>
127127
{icon}
128128
{label}
129129
</div>
130-
<div className={"text-nb-gray-300"}>{value}</div>
130+
<div className={"text-gray-500 dark:text-nb-gray-300"}>{value}</div>
131131
</div>
132132
);
133133
};

0 commit comments

Comments
 (0)