From e124a04f7fb00344071c752f12328e396feb0f1e Mon Sep 17 00:00:00 2001 From: marzban-dev Date: Mon, 2 Jun 2025 14:48:57 +0330 Subject: [PATCH] Updated --- frontend/components/global/product/ProductCard.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/global/product/ProductCard.vue b/frontend/components/global/product/ProductCard.vue index 7dee340..e9a5e50 100644 --- a/frontend/components/global/product/ProductCard.vue +++ b/frontend/components/global/product/ProductCard.vue @@ -39,7 +39,7 @@ const limitedColors = computed(() => { }); const parallaxStyle = computed(() => { - if (!isMobile.value && isMouseOutsideContainer.value) { + if (isMobile.value || isMouseOutsideContainer.value) { return { transform: `rotateX(0deg) rotateY(0deg)`, transition: "0.3s ease-out all",