diff --git a/frontend/src/App.css b/frontend/src/App.css index 4cff9ce..8d4d570 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -3728,3 +3728,26 @@ a.app-footer__about:hover, font-size: 1.5rem; } } + +/* ── Page-enter transition ────────────────────────────────────────────────── */ + +@keyframes pageEnter { + from { + opacity: 0; + transform: translateY(8px); + } + to { + opacity: 1; + transform: translateY(0); + } +} + +.home, +.topics-browse, +.subtopic-page, +.search-results-page, +.creators-browse, +.creator-detail, +.technique-page { + animation: pageEnter 250ms ease-out; +}