We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d06f336 commit 978c2a8Copy full SHA for 978c2a8
src/components/HomePage/header.css
@@ -103,6 +103,29 @@
103
width: 100%;
104
height: 100%;
105
border-radius: 10% 40%;
106
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
107
+}
108
+
109
+.chh__header-image img:hover {
110
+ transform: scale(1.1);
111
+ box-shadow: 0 10px 20px rgba(243, 240, 240, 0.2);
112
113
114
+@keyframes damping {
115
+ 0% {
116
+ transform: scale(1);
117
+ }
118
+ 40% {
119
+ transform: scale(1.06);
120
121
+ 60% {
122
+ transform: scale(1.05);
123
124
125
126
127
128
+ animation: damping 0.6s ease-in-out; /* Applied damping keyframes on hover */
129
}
130
131
@media screen and (max-width: 1050px) {
0 commit comments