Updated Past Events Font-Color to Primary for Visibility (#5572)
Issue: [#5164](https://github.com/twentyhq/twenty/issues/5164) Updated font-color of the title of past calendar events to be primary to improve visibility. Calendar event time font-color remains unchanged. Before:  After:  The year in month-year at the top of these screenshots also appears to be in tertiary font-color which can be adjusted too if that feels not visible enough. --------- Co-authored-by: ktang520 <ktang520@gmail.com> Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
This commit is contained in:
@ -48,7 +48,7 @@ const StyledAttendanceIndicator = styled.div<{ active?: boolean }>`
|
||||
const StyledLabels = styled.div`
|
||||
align-items: center;
|
||||
display: flex;
|
||||
color: ${({ theme }) => theme.font.color.tertiary};
|
||||
color: ${({ theme }) => theme.font.color.primary};
|
||||
gap: ${({ theme }) => theme.spacing(2)};
|
||||
flex: 1 0 auto;
|
||||
`;
|
||||
@ -56,6 +56,7 @@ const StyledLabels = styled.div`
|
||||
const StyledTime = styled.div`
|
||||
align-items: center;
|
||||
display: flex;
|
||||
color: ${({ theme }) => theme.font.color.tertiary};
|
||||
gap: ${({ theme }) => theme.spacing(1)};
|
||||
width: ${({ theme }) => theme.spacing(26)};
|
||||
`;
|
||||
|
||||
Reference in New Issue
Block a user