Skip to content

Commit e2f1ad3

Browse files
committed
more...
1 parent 585b388 commit e2f1ad3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/modules/dns-nameservers/table/NameserverNameCell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default function NameserverNameCell({ ns }: Props) {
1111
<div className={"flex min-w-[270px] max-w-[270px]"}>
1212
<div
1313
className={
14-
"flex items-center gap-2 dark:text-neutral-300 text-neutral-500 transition-all hover:text-neutral-800 hover:bg-gray-200 dark:hover:text-neutral-100 dark:hover:bg-nb-gray-800/60 py-2 px-3 rounded-md cursor-pointer"
14+
"flex items-center gap-2 dark:text-neutral-300 text-neutral-500 transition-all hover:text-neutral-100 hover:bg-nb-gray-800/60 py-2 px-3 rounded-md cursor-pointer"
1515
}
1616
>
1717
<ActiveInactiveRow

src/modules/networks/misc/NetworkInformationSquare.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const NetworkInformationSquare = ({
2222
className={cn(
2323
"flex w-full items-center max-w-[300px] gap-4 text-neutral-500 dark:text-neutral-300 transition-all group/network rounded-md",
2424
onClick
25-
? "hover:text-neutral-700 dark:hover:text-neutral-100 hover:bg-gray-200 dark:hover:bg-nb-gray-910 cursor-pointer py-2 pl-3 pr-5 relative"
25+
? "hover:text-neutral-100 hover:bg-nb-gray-800/60 cursor-pointer py-2 pl-3 pr-5 relative"
2626
: "cursor-default",
2727
)}
2828
onClick={onClick}

src/modules/peers/PeerNameCell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export default function PeerNameCell({ peer, linkToPeer = true }: Props) {
2929
className={cn(
3030
"flex items-center max-w-[300px] gap-2 dark:text-neutral-300 text-neutral-500 transition-all py-2 px-3 rounded-md ",
3131
linkToPeer &&
32-
"hover:text-neutral-800 hover:bg-gray-200 dark:hover:text-neutral-100 dark:hover:bg-nb-gray-800/60 cursor-pointer",
32+
"hover:text-neutral-100 hover:bg-nb-gray-800/60 cursor-pointer",
3333
)}
3434
data-testid="peer-name-cell"
3535
aria-label={`View details of peer ${peer.name}`}

0 commit comments

Comments
 (0)