fix: background colors for record table (#5967)

# Summary
- Address issue #5959 
- Update background color on hover & click for record table

# Test Plan

![Kapture 2024-06-19 at 20 32
44](https://github.com/twentyhq/twenty/assets/10789158/18a58c09-040a-47e6-953d-aac6f3803486)
This commit is contained in:
Akilesh Praveen
2024-06-21 07:01:27 -07:00
committed by GitHub
parent 35b9b29f20
commit 732653034e

View File

@ -32,7 +32,10 @@ const StyledColumnHeaderCell = styled.th<{
${({ theme }) => { ${({ theme }) => {
return ` return `
&:hover { &:hover {
background: ${theme.background.quaternary}; background: ${theme.background.secondary};
};
&:active {
background: ${theme.background.tertiary};
}; };
`; `;
}}; }};