Fix label fonts in timeline events (#6511)

As title
This commit is contained in:
Thomas Trompette
2024-08-02 14:53:59 +02:00
committed by GitHub
parent 489e8def9c
commit 931a19260f
2 changed files with 2 additions and 1 deletions

View File

@ -11,11 +11,11 @@ const StyledUpdatedFieldContainer = styled.div`
align-items: center; align-items: center;
display: flex; display: flex;
gap: ${({ theme }) => theme.spacing(1)}; gap: ${({ theme }) => theme.spacing(1)};
color: ${({ theme }) => theme.font.color.tertiary};
`; `;
const StyledUpdatedFieldIconContainer = styled.div` const StyledUpdatedFieldIconContainer = styled.div`
align-items: center; align-items: center;
color: ${({ theme }) => theme.font.color.tertiary};
display: flex; display: flex;
flex-direction: row; flex-direction: row;
height: 14px; height: 14px;

View File

@ -18,6 +18,7 @@ const StyledEventFieldDiffValue = styled.div`
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
color: ${({ theme }) => theme.font.color.primary};
`; `;
export const EventFieldDiffValue = ({ export const EventFieldDiffValue = ({