remove unnecessary change

This commit is contained in:
mulan xia
2024-01-30 22:30:38 -05:00
parent 67ad0defce
commit 7309f88515
+2 -2
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'])}
`;