Fix + column header in tables (#12221)
Fixes https://github.com/twentyhq/twenty/issues/12213 https://github.com/user-attachments/assets/1eb675f0-c8ba-4601-bcf7-c80c27a03d40
This commit is contained in:
@ -32,19 +32,21 @@ const StyledPlusIconHeaderCell = styled.th<{
|
|||||||
`
|
`
|
||||||
: 'width: 100%'};
|
: 'width: 100%'};
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: ${({ theme }) => theme.background.transparent.secondary};
|
||||||
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const StyledPlusIconContainer = styled.div`
|
const StyledPlusIconContainer = styled.div`
|
||||||
align-items: center;
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
height: 32px;
|
height: 32px;
|
||||||
justify-content: center;
|
justify-content: flex-start;
|
||||||
|
margin-left: ${({ theme }) => theme.spacing(2)};
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const StyledDropdownContainer = styled.div`
|
const StyledDropdownContainer = styled.div`
|
||||||
&:hover {
|
|
||||||
background: ${({ theme }) => theme.background.transparent.light};
|
|
||||||
}
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user