mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
fix: replace framer-motion FadeIn with CSS keyframe animations in hero to fix rendering issue
This commit is contained in:
@@ -18,3 +18,14 @@
|
||||
.tool-card:hover {
|
||||
border-color: var(--cat-color);
|
||||
}
|
||||
|
||||
@keyframes fadeUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(20px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user