diff --git a/nym-wallet/src/components/Accounts/AccountOverview.tsx b/nym-wallet/src/components/Accounts/AccountOverview.tsx
index d2c8dd9125..dc6e0cd0cf 100644
--- a/nym-wallet/src/components/Accounts/AccountOverview.tsx
+++ b/nym-wallet/src/components/Accounts/AccountOverview.tsx
@@ -6,7 +6,15 @@ import { AccountAvatar } from './AccountAvatar';
export const AccountOverview = ({ account, onClick }: { account: AccountEntry; onClick: () => void }) => (
}
- sx={{ color: 'text.primary' }}
+ sx={{
+ color: 'text.primary',
+ '&:hover': (t) =>
+ t.palette.mode === 'dark'
+ ? {
+ backgroundColor: 'rgba(255, 255, 255, 0.08)',
+ }
+ : {},
+ }}
onClick={onClick}
disableRipple
>
diff --git a/nym-wallet/src/components/NetworkSelector.tsx b/nym-wallet/src/components/NetworkSelector.tsx
index 3df48baffd..2fceb74e80 100644
--- a/nym-wallet/src/components/NetworkSelector.tsx
+++ b/nym-wallet/src/components/NetworkSelector.tsx
@@ -40,7 +40,16 @@ export const NetworkSelector = () => {