This commit is contained in:
hamid zarghami
2025-05-03 16:27:42 +03:30
parent 35aad2d872
commit 4a16d560d9
7 changed files with 114 additions and 1 deletions
+26
View File
@@ -127,3 +127,29 @@ tbody tr {
.overflowX::-webkit-scrollbar {
display: none;
}
@keyframes slideDown {
from {
transform: translateY(-100%);
}
to {
transform: translateY(0);
}
}
@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}
.animate-slide-down {
animation: slideDown 1s ease-out forwards;
}
.animate-slide-up {
animation: slideUp 1s ease-out forwards;
}