diff --git a/src/components/common/DataTable.tsx b/src/components/common/DataTable.tsx index d9ccec88..3b630c79 100644 --- a/src/components/common/DataTable.tsx +++ b/src/components/common/DataTable.tsx @@ -120,9 +120,10 @@ const tableSx = { const clickableRowSx: SxProps = (theme) => ({ cursor: 'pointer', - transition: 'background-color 0.2s', + transition: 'all 0.2s', + borderBottom: `1px solid ${theme.palette.surface.light}`, '&:hover': { - backgroundColor: theme.palette.surface.subtle, + backgroundColor: theme.palette.border.subtle, }, });