prevent entries from having the hover background color when clicked on mobile

This commit is contained in:
Athou
2023-04-28 14:54:40 +02:00
parent d96f8da8fd
commit d9b899b53f

View File

@@ -47,8 +47,10 @@ const useStyles = createStyles((theme, props: FeedEntryProps & { viewMode?: View
marginTop: mobileMarginY,
marginBottom: mobileMarginY,
},
"&:hover": {
backgroundColor: backgroundHoverColor,
"@media (hover: hover)": {
"&:hover": {
backgroundColor: backgroundHoverColor,
},
},
},
body: {