remove unnecessary change

This commit is contained in:
mulan xia 2024-01-30 16:07:53 -05:00
parent 67ad0defce
commit 7309f88515
No known key found for this signature in database
GPG Key ID: C6CE526613568D73

View File

@ -52,7 +52,7 @@ Styled.DiffArrowContainer = styled.span<DiffArrowProps>`
${({ direction }) =>
({
right: css`
transform: scaleX(1);
transform: scaleX(1);
`,
left: css`
transform: scaleX(-1);
@ -62,6 +62,6 @@ Styled.DiffArrowContainer = styled.span<DiffArrowProps>`
`,
down: css`
transform: rotate(90deg);
`
`,
}[direction || 'right'])}
`;