From 8005a99a48bdcb83c775854de1543596dd7a0427 Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Thu, 22 Jan 2026 12:22:57 +0100 Subject: [PATCH] style: add custom bounce animation for sort indicators - Added animate-bounce-subtle to index.html - Makes the sorting arrow look more dynamic and premium --- index.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/index.html b/index.html index 33e135b..f354a28 100644 --- a/index.html +++ b/index.html @@ -43,6 +43,22 @@ ::-webkit-scrollbar-thumb:hover { background: #475569; } + + @keyframes bounce-subtle { + + 0%, + 100% { + transform: translateY(0); + } + + 50% { + transform: translateY(-3px); + } + } + + .animate-bounce-subtle { + animation: bounce-subtle 2s ease-in-out infinite; + }