From 603a7fe3e4aa42b9596ab7c6727aa1f4ae6fad65 Mon Sep 17 00:00:00 2001 From: anmolgupta2015 Date: Tue, 14 Jan 2025 09:51:26 +0530 Subject: [PATCH] Fix issue #475 properly --- styles/globals.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/styles/globals.css b/styles/globals.css index 9c480c6a..4b9c83b3 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -213,4 +213,16 @@ mix-blend-mode: lighten; @keyframes a-ltr-before{ 0% {transform: translateX(0)} 100% {transform: translateX(200%)} +} + +.hoverEffect{ + transition: transform 0.3s ease-in-out; /* Add a smooth transition effect */ +} + +.card-opacity:hover{ + opacity: 100; +} + +.hoverEffect:hover { + transform: scale(1.1); /* Scale the image by 10% on hover */ } \ No newline at end of file