Commit 782dd4af authored by Thomas Boni's avatar Thomas Boni
Browse files

add animation on heart

parent fa30d9f7
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -14,4 +14,14 @@
  background-color: rgb(220, 10, 22);
  -webkit-mask-image: var(--md-admonition-icon--heart);
          mask-image: var(--md-admonition-icon--heart);
  animation: heart 1000ms infinite;
}

@keyframes heart {
  0%, 40%, 80%, 100% {
    transform: scale(1);
  }
  20%, 60% {
    transform: scale(1.15);
  }
}