Skip to content

Commit

Permalink
Update index.astro
Browse files Browse the repository at this point in the history
  • Loading branch information
CHooverShrimp committed Oct 24, 2024
1 parent fb2a956 commit 72001d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -150,18 +150,18 @@ import Card from '../components/Card.astro';
}

#CollageImage2, #CollageImage4, #CollageImage6{
transform: translateX(-20px) translatey(100px) rotate(-1deg);
transform: translateX(-20px) translatey(100px) rotate(-1deg) ;
justify-self: left;
transition: transform 0.5s ease;
}

#CollageImage1:hover, #CollageImage3:hover, #CollageImage5:hover {
transform: translateX(20px) rotate(0deg);
transform: translateX(20px) rotate(0deg) scale(1.05);
z-index: 1;
}

#CollageImage2:hover, #CollageImage4:hover, #CollageImage6:hover {
transform: translateX(-20px) translatey(100px) rotate(0deg);
transform: translateX(-20px) translatey(100px) rotate(0deg) scale(1.05);
z-index: 1;
}

Expand Down

0 comments on commit 72001d1

Please sign in to comment.