row click & filters + ...

This commit is contained in:
hamid zarghami
2025-06-26 09:41:39 +03:30
parent 5af36bd77b
commit 1cd24fc3c5
6 changed files with 101 additions and 9 deletions
+16
View File
@@ -227,3 +227,19 @@ textarea::placeholder {
}
/* End Generation Here */
/* انیمیشن برای فیلترهای موبایل */
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fadeInDown {
animation: fadeInDown 0.3s ease-out;
}