remove italic font for child

This commit is contained in:
Aykut Saraç 2022-03-19 15:37:40 +03:00
parent 0cdb002fcd
commit 5d0b45e25c

View File

@ -38,7 +38,6 @@ export const StyledKey = styled.span<{
objectKey?: boolean;
parent?: boolean;
}>`
font-style: ${({ parent, objectKey }) => !(parent || objectKey) && "italic"};
color: ${({ theme, objectKey, parent }) =>
parent ? theme.ORANGE : objectKey ? theme.BLURPLE : theme.LIGHTGREEN};
`;