calendar strip add animation

This commit is contained in:
isUnknown 2024-08-30 15:39:40 +02:00
parent ab59e097a0
commit ea052d22f0
2 changed files with 22 additions and 7 deletions

View file

@ -2,7 +2,23 @@
display: none;
}
body.progress * {
@keyframes loading {
from,
to {
opacity: 1;
}
50% {
opacity: 0;
}
}
.calendar-strip__days.progress {
cursor: progress !important;
}
.calendar-strip__days.progress > li {
animation: loading 0.3s;
}
.calendar-strip__days.progress button {
cursor: progress !important;
}