This commit is contained in:
AykutSarac 2022-04-26 14:28:42 +03:00
parent c3e3e2f49d
commit c898d99493

View File

@ -11,15 +11,13 @@ export const StyledTextWrapper = styled.div`
cursor: pointer;
`;
export const StyledText = styled.pre<{
width: number;
height: number;
}>`
export const StyledText = styled.pre<{ width: number; height: number }>`
display: flex;
justify-content: center;
flex-direction: column;
width: ${({ width }) => width};
height: ${({ height }) => height};
min-height: 50;
color: ${({ theme }) => theme.TEXT_NORMAL};
`;