mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-26 04:17:15 +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};
|
||||
column-gap: ${({ theme }) => theme.spacing(2)};
|
||||
color: ${({ variant, theme }) =>
|
||||
variant === 'placeholder' ? theme.font.color.extraLight : null};
|
||||
variant === 'placeholder'
|
||||
? theme.font.color.extraLight
|
||||
: theme.font.color.primary};
|
||||
`;
|
||||
|
||||
const StyledSourceHandle = styled(Handle)`
|
||||
|
Loading…
Reference in New Issue
Block a user