removed unnecessary comment + fixed chevron stuck with active style because of focus-within

This commit is contained in:
ronronscelestes 2021-11-10 11:13:21 +01:00
parent c45ed576a1
commit fbf816821d
2 changed files with 0 additions and 7 deletions

View File

@ -59,10 +59,6 @@ const BoxWrapper = styled.div`
&:hover {
${({ theme, isActive }) => activeRowStyle(theme, isActive)}
}
&:focus-within {
${({ theme, isActive }) => activeRowStyle(theme, isActive)}
}
`;
const Cell = styled(Flex)`

View File

@ -6,9 +6,6 @@ const CarretIcon = styled(CarretDown)`
width: ${10 / 16}rem;
transform: rotate(${({ $isActive }) => ($isActive ? '180' : '0')}deg);
margin-left: ${({ theme }) => theme.spaces[2]};
/* * {
fill: ${({ theme }) => theme.colors.primary600};
} */
`;
export default CarretIcon;