Skip to content

Commit

Permalink
feat: add fade-in/out animation for update button
Browse files Browse the repository at this point in the history
  • Loading branch information
aliaghdam committed Oct 27, 2024
1 parent 5ef1129 commit 4af14b0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions packages/wordpress/js/admin/components/update/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,20 @@
display: block;
margin-right: 8px;
border-radius: 5px;
animation: saveButtonUpdateAnimation 1300ms infinite;
animation-delay: 500ms;
}
}
}

@keyframes saveButtonUpdateAnimation {
0% {
opacity:1;
}
50%{
opacity:0;
}
100% {
opacity:1;
}
}

0 comments on commit 4af14b0

Please sign in to comment.