This commit is contained in:
StroepWafel
2026-01-22 18:58:33 +10:30
parent c7033e61fb
commit 89fd9bbd89
@@ -68,4 +68,17 @@
.dark .highlight { .dark .highlight {
background-color: rgba(255, 230, 100, 0.4); background-color: rgba(255, 230, 100, 0.4);
}
@keyframes shimmer {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(100%);
}
}
.animate-shimmer {
animation: shimmer 2s infinite;
} }