Skip to content

Commit 1e521ba

Browse files
committed
fix: 🐛 Fixed transform css
1 parent 263aef2 commit 1e521ba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/utils/styles.utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const getTransformStyles = (
66
scale: number,
77
): string => {
88
// Standard translate prevents blurry svg on the safari
9-
return `translate3d(${x}px, ${y}px, 0) scale(${scale})`;
9+
return `translate(${x}px, ${y}px) scale(${scale})`;
1010
};
1111

1212
export const getMatrixTransformStyles = (

0 commit comments

Comments
 (0)