From ad774325dfefe847c64862caf1fdd633134fa82a Mon Sep 17 00:00:00 2001
From: Lim Chee Aun <cheeaun@gmail.com>
Date: Tue, 25 Apr 2023 20:51:22 +0800
Subject: [PATCH] Make image animate when hovering over status card

---
 src/components/status.css | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/components/status.css b/src/components/status.css
index eac6a62e..1ad2cc42 100644
--- a/src/components/status.css
+++ b/src/components/status.css
@@ -85,6 +85,9 @@
   border-color: var(--outline-hover-color);
   box-shadow: inset 0 0 0 4px var(--bg-faded-blur-color);
 }
+.status-card-link:is(:hover, :focus) .status-card img {
+  animation: position-object 5s ease-in-out 1s 5;
+}
 .status-card-link:is(:active) .status-card {
   background-color: var(--bg-faded-color);
 }