Skip to content

Commit

Permalink
Fix issue asyncapi#475 properly
Browse files Browse the repository at this point in the history
  • Loading branch information
anmolgupta2015 committed Jan 14, 2025
1 parent 6b8b521 commit 603a7fe
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
}

0 comments on commit 603a7fe

Please sign in to comment.