From 836fcb23042dab5efb049454b7851f142b1ff3ab Mon Sep 17 00:00:00 2001 From: jlightner Date: Tue, 31 Mar 2026 06:27:12 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20Added=20@keyframes=20pageEnter=20(opaci?= =?UTF-8?q?ty=200=E2=86=921,=20translateY=208=E2=86=920,=20250ms=20ea?= =?UTF-8?q?=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - "frontend/src/App.css" GSD-Task: S03/T02 --- frontend/src/App.css | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) 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; +}