Skip to content

Commit

Permalink
Merge pull request #1563 from Himanshu-kumar025/main
Browse files Browse the repository at this point in the history
feat: Add hover effect in top deals cards
  • Loading branch information
apu52 authored Oct 26, 2024
2 parents ed4f264 + c88a6dd commit 1a48e8a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion topdeals/topdeals.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
}
.card {
background-color: rgba(255, 255, 255, 0.8);
border-radius: 5px;

border-radius: 15px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
overflow: hidden;
width: 32%;
Expand All @@ -58,6 +59,11 @@


}

.card:hover{
transform: scale(1.035);
}

.card img {
width: 100%;
height: auto;
Expand Down

0 comments on commit 1a48e8a

Please sign in to comment.