feat: add page transitions

This commit is contained in:
2026-06-06 11:34:46 +05:30
parent 16c7a61032
commit afe10604c8
6 changed files with 139 additions and 31 deletions

View File

@@ -102,6 +102,21 @@
to { transform: translateY(0); }
}
.animate-page-enter {
animation: page-enter 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes page-enter {
from {
opacity: 0;
transform: translateY(8px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Brew method bar */
.brew-method-bar {
position: absolute;