Improve the sales import

This commit is contained in:
Urtzi Alfaro
2025-10-15 21:09:42 +02:00
parent 8f9e9a7edc
commit dbb48d8e2c
21 changed files with 992 additions and 409 deletions

View File

@@ -708,6 +708,15 @@
}
}
@keyframes shimmer {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(100%);
}
}
.animate-oven-heat {
animation: oven-heat 2s ease-in-out infinite;
}
@@ -718,4 +727,8 @@
.animate-rising {
animation: rising 3s ease-in-out infinite;
}
.animate-shimmer {
animation: shimmer 2s ease-in-out infinite;
}