CM: Fix hover styles for component icon

This commit is contained in:
Gustav Hansen 2022-12-20 15:05:12 +01:00
parent 04863be7b6
commit b847d17cda

View File

@ -20,6 +20,12 @@ const CustomLink = styled(Flex)`
color: ${theme.colors.primary600};
}
`}
/* > ComponentIcon */
> div:first-child {
background: ${({ theme }) => theme.colors.primary200};
color: ${({ theme }) => theme.colors.primary600};
}
}
`;