mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-29 05:00:43 +10:00
Merge pull request #441 from sharetribe/animateButton
animate checkmark
This commit is contained in:
commit
22cb502213
1 changed files with 12 additions and 0 deletions
|
|
@ -97,6 +97,18 @@
|
|||
width: 24px;
|
||||
height: 24px;
|
||||
stroke: var(--matterColorLight);
|
||||
|
||||
/* Animation */
|
||||
animation-name: checkmarkAnimation;
|
||||
animation-duration: 0.5s;
|
||||
animation-iteration-count: 1;
|
||||
animation-timing-function: ease-out;
|
||||
}
|
||||
|
||||
@keyframes checkmarkAnimation {
|
||||
0% { opacity: 0; transform: scale(0.75);}
|
||||
50% { transform: scale(1.15);}
|
||||
100% { opacity: 1; transform: scale(1);}
|
||||
}
|
||||
|
||||
.secondaryButton .spinner {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue