chore: remove hover effects in mobile

This commit is contained in:
Tristan Yang
2023-02-20 12:54:45 +08:00
parent 567b3714bc
commit 053c7d9402
27 changed files with 46 additions and 54 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ const UsersModal: FC<Props> = ({ closeModal }) => {
{users.map((u) => {
const { uid = 0 } = u || {};
return (
<li key={uid} className="cursor-pointer px-2 hover:bg-gray-600/10">
<li key={uid} className="cursor-pointer px-2 md:hover:bg-gray-600/10">
<NavLink className={'w-full'} onClick={closeModal} to={`/chat/dm/${uid}`}>
<User uid={uid} interactive={false} />
</NavLink>