refacto les card items et list

This commit is contained in:
styve Lioumba
2025-11-16 12:18:02 +01:00
parent b669190bce
commit e33c8a229f
18 changed files with 879 additions and 253 deletions

View File

@@ -0,0 +1,23 @@
@keyframes pulseSlow {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.8;
}
}
.animate-pulse-slow {
animation: pulseSlow 3s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}