Skip to content

Commit

Permalink
Match Button Wiggle
Browse files Browse the repository at this point in the history
  • Loading branch information
murermader committed Oct 29, 2023
1 parent 5436bcc commit 7c015e3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions DineDevineUI/src/pages/pages.css
Expand Up @@ -120,3 +120,15 @@
.bottom-spacer {
height: 2rem;
}

@keyframes wiggle {
0% { transform: rotate(0deg); }
80% { transform: rotate(0deg); }
85% { transform: rotate(3deg); }
95% { transform: rotate(-3deg); }
100% { transform: rotate(0deg); }
}

ion-button > img {
animation: wiggle 3.5s infinite;
}

0 comments on commit 7c015e3

Please sign in to comment.