Skip to content

Commit

Permalink
Merge pull request #81 from hkcodings/issue-26-fix
Browse files Browse the repository at this point in the history
Resolved issue #26 : Adding pan zoom effect to menu images
  • Loading branch information
dohinafs authored Oct 2, 2024
2 parents f5bc3df + c0e6477 commit 8f2d579
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -587,9 +587,15 @@ button:hover {
text-decoration: line-through;
}

.menu img {
width: 300px;
height: 300px;

.menu img{
width:300px;
height:300px;
transition: transform 0.3s ease;
}

.menu img:hover {
transform: scale(1.1);
}


Expand Down

0 comments on commit 8f2d579

Please sign in to comment.