12398: add slide-out animation

This commit is contained in:
Ahmed Ejaz
2024-05-28 01:10:30 +05:00
committed by zanetagebka
parent 897596de5f
commit 52a5b5fb2b
10 changed files with 81 additions and 33 deletions

View File

@@ -413,4 +413,19 @@
}
}
}
@keyframes slideOutLeft {
from {
transform: translateX(0);
opacity: 1;
}
to {
transform: translateX(-100%);
opacity: 0;
}
}
.slide-out {
animation: slideOutLeft 0.5s forwards;
}
}