Skip to content

Commit

Permalink
Merge branch 'main' into cursor-animation
Browse files Browse the repository at this point in the history
  • Loading branch information
samyakmaitre authored Oct 6, 2024
2 parents e0ea6a1 + 25edc60 commit 0dcd248
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 2 deletions.
43 changes: 42 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion src/assets/styles/Offers.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,16 @@
align-items: center;
border: 1px solid #ddd;
border-radius: 10px;
transition: all .1s ease;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
margin: 20px;
transition-delay: 0.1s;
}
.offer-card:hover{
transform: scale(1.1) translateX(5px) translateY(5px);
box-shadow: 1px 1px 7px rgb(207, 72, 201),
1px 1px 7px rgb(207, 72, 201);
}

.offer-image {
max-width: 100%;
max-height: 100%;
Expand Down

0 comments on commit 0dcd248

Please sign in to comment.