make the heart beat (thx chibb)

pull/143/head
Aevann 2023-05-04 01:41:17 +03:00
parent c286718112
commit b86ed01bcf
1 changed files with 13 additions and 0 deletions

View File

@ -7403,3 +7403,16 @@ button, .btn {
#profile-mobile--info {
margin-top: -10px;
}
@keyframes animateHeart {
0% {transform: scale(0.8);}
5% {transform: scale(0.9);}
10% {transform: scale(0.8);}
15% {transform: scale(1);}
50% {transform: scale(0.8);}
100% {transform: scale(0.8);}
}
#marseko-heart {
animation: animateHeart 0.3s infinite;
}