Fix Error: Solvento el problema del footer que no mostraba el contenido

This commit is contained in:
2025-07-03 11:00:39 +02:00
parent c2cd5d9672
commit be25cdd16d
5 changed files with 40 additions and 23 deletions
+3 -3
View File
@@ -1,15 +1,15 @@
@keyframes scroll {
0% {
transform: translateX(100%);
transform: translateX(0%);
}
100% {
transform: translateX(-100%);
transform: translateX(-50%);
}
}
.animate-scroll {
display: inline-block;
animation: scroll 20s linear infinite;
animation: scroll 45s linear infinite;
}