Weiko
2025-05-22 16:32:07 +02:00
committed by GitHub
parent aeee04415d
commit 08e32017fb

View File

@ -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;
`; `;