Improved Archive page

This commit is contained in:
2026-06-16 21:03:22 +03:00
parent 62a87a1169
commit 1f8b9bedc0
3 changed files with 143 additions and 46 deletions

View File

@@ -15,3 +15,36 @@
opacity: 0;
transition: opacity 1000ms;
}
// Height transition for Archive page
.heightTransition-enter {
max-height: 0;
overflow: hidden;
}
.heightTransition-enter-active {
max-height: 10000px;
overflow: hidden;
transition: max-height 300ms ease-out;
}
.heightTransition-enter-done {
max-height: 10000px;
overflow: hidden;
}
.heightTransition-exit {
max-height: 10000px;
overflow: hidden;
}
.heightTransition-exit-active {
max-height: 0;
overflow: hidden;
transition: max-height 300ms ease-out;
}
.heightTransition-exit-done {
max-height: 0;
overflow: hidden;
}