From 4e4492e4659bff5901095738cb788ffbc4dcc3da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Pe=CC=81ault?= Date: Mon, 26 Sep 2022 21:27:22 +0200 Subject: [PATCH] Fix Shop rotating images performances on Safari --- src/style/organisms/_shop.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/style/organisms/_shop.scss b/src/style/organisms/_shop.scss index 9d58e22..bfcca22 100644 --- a/src/style/organisms/_shop.scss +++ b/src/style/organisms/_shop.scss @@ -38,7 +38,7 @@ width: 100%; height: 100%; opacity: 0; - transform: scale3d(1.075, 1.075, 1.075); + transform: scale(1.075); transition: opacity 0.8s, transform 1.6s var(--ease-quart); } :global(img) { @@ -47,7 +47,7 @@ :global(.is-visible) { opacity: 1; - transform: scale3d(1,1,1); + transform: scale(1); } :global(img) {