Add back the nice fade-in

This commit is contained in:
shamoon
2026-07-06 20:13:41 -07:00
parent 3755070e1f
commit 872465ee8a
3 changed files with 60 additions and 0 deletions
@@ -1,3 +1,23 @@
i-bs {
cursor: move;
}
.fade.show {
animation: pngx-entry-fade 160ms ease-out;
}
@keyframes pngx-entry-fade {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.fade.show {
animation: none;
}
}