style: add custom bounce animation for sort indicators

- Added animate-bounce-subtle to index.html
- Makes the sorting arrow look more dynamic and premium
This commit is contained in:
Christian Vidal Wolf
2026-01-22 12:22:57 +01:00
parent ade6d01df2
commit 8005a99a48
+16
View File
@@ -43,6 +43,22 @@
::-webkit-scrollbar-thumb:hover { ::-webkit-scrollbar-thumb:hover {
background: #475569; 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;
}
</style> </style>
</head> </head>