Skip to content

Commit

Permalink
fix: background colors for record table (#5967)
Browse files Browse the repository at this point in the history
# 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)
  • Loading branch information
AkiPraveen authored Jun 21, 2024
1 parent 35b9b29 commit 7326530
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ const StyledColumnHeaderCell = styled.th<{
${({ theme }) => {
return `
&:hover {
background: ${theme.background.quaternary};
background: ${theme.background.secondary};
};
&:active {
background: ${theme.background.tertiary};
};
`;
}};
Expand Down

0 comments on commit 7326530

Please sign in to comment.