UI feedback fix

This commit is contained in:
Julie Plantey 2022-12-27 10:33:34 +01:00
parent 6d49a3c40b
commit 9e43428c8f
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ export const LinkEllipsis = styled(Link)`
export const DisconnectButton = styled.button`
svg path {
fill: ${({ theme, disabled }) =>
!disabled ? theme.colors.neutral500 : theme.colors.neutral600};
disabled ? theme.colors.neutral600 : theme.colors.neutral500};
}
&:hover svg path,

View File

@ -83,8 +83,8 @@ export const RelationItem = ({
paddingRight={4}
hasRadius
borderSize={1}
background="neutral0"
borderColor="neutral200"
background={disabled ? 'neutral150' : 'neutral0'}
justifyContent="space-between"
ref={canDrag ? composedRefs : undefined}
data-handler-id={handlerId}