-
I'm trying to change row color on mouse hover.
But this doesn't worked. |
Beta Was this translation helpful? Give feedback.
Answered by
jrmalin
Oct 9, 2023
Replies: 1 comment 1 reply
-
Try using |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Klaus-8
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Try using
'&:hover td'
, somuiTableBodyRowProps={({ row }) => ({ sx: { '&:hover td': { backgroundColor: '#e8f1fd' } } })}
!