speed up shitpost mode upload

This commit is contained in:
2026-05-24 08:56:09 +02:00
parent 8e6011785a
commit 2bce856153
2 changed files with 124 additions and 1 deletions

View File

@@ -1261,3 +1261,15 @@
height: 200px;
}
}
/* Video thumbnail loading animation */
.video-thumbnail-loading {
animation: thumbPulse 1.5s ease-in-out infinite;
background: rgba(255, 255, 255, 0.05);
}
@keyframes thumbPulse {
0% { opacity: 0.4; }
50% { opacity: 0.8; }
100% { opacity: 0.4; }
}