mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-26 13:42:44 +03:00
Use the correct color for workflow nodes label (#7829)
Follow the design from the Figma about the color to use. Big up to @Bonapara for doing great job on the Figma! It was done on stream! Fixes #7058
This commit is contained in:
parent
29f903a83b
commit
36e59d80c4
@ -66,7 +66,9 @@ const StyledStepNodeLabel = styled.div<{ variant?: Variant }>`
|
|||||||
font-weight: ${({ theme }) => theme.font.weight.medium};
|
font-weight: ${({ theme }) => theme.font.weight.medium};
|
||||||
column-gap: ${({ theme }) => theme.spacing(2)};
|
column-gap: ${({ theme }) => theme.spacing(2)};
|
||||||
color: ${({ variant, theme }) =>
|
color: ${({ variant, theme }) =>
|
||||||
variant === 'placeholder' ? theme.font.color.extraLight : null};
|
variant === 'placeholder'
|
||||||
|
? theme.font.color.extraLight
|
||||||
|
: theme.font.color.primary};
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const StyledSourceHandle = styled(Handle)`
|
const StyledSourceHandle = styled(Handle)`
|
||||||
|
Loading…
Reference in New Issue
Block a user