feat: implement CSS animation library and apply utilities - #303
Open
Devadakene wants to merge 3 commits into
Open
feat: implement CSS animation library and apply utilities#303Devadakene wants to merge 3 commits into
Devadakene wants to merge 3 commits into
Conversation
|
@Devadakene is attempting to deploy a commit to the Jaja's projects Team on Vercel. A member of the Team first needs to authorize it. |
devJaja
self-requested a review
August 22, 2026 04:36
Contributor
|
Nice Implementation @Devadakene kindly resolve the conflicts |
Contributor
|
All CI checks passed, just resolve the conflicts and your pull request will be merge |
Contributor
|
@Devadakene Well done @Devadakene Kindly fix the CI/frontend check failing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #238
Summary
Introduces a shared library of CSS animation utilities and micro-interactions to ensure visual consistency and reduce animation-related bugs across the frontend.
Changes
frontend/src/styles/animations.csswith.fade-in,.slide-up,.scale-in, and.pulseutility classes utilizing GPU-accelerated properties (opacityandtransform).frontend/src/styles/micro-interactions.csswith hover effects (.hover-lift,.hover-glow,.hover-scale), a keyboard-only.focus-ring, and standard transition duration classes (.transition-fast,.transition-normal,.transition-slow).frontend/src/styles/global.css.frontend/src/components/landing/Hero.tsxto replaceframer-motionimplementations with our new native CSS animation utilities for lightweight rendering..hover-liftmicro-interaction utility to the cards infrontend/src/components/dashboard/KpiCard.tsx.prefers-reduced-motion: reducefor accessibility.Testing
prefers-reduced-motion: reduceemulation in DevTools to ensure all animations are instantly skipped when requested by user settings.Related Issue
Checklist