Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 1 addition & 44 deletions core/animations.css
Original file line number Diff line number Diff line change
Expand Up @@ -369,36 +369,6 @@
}
}

@keyframes ease-kf-slide-image-exit {
from {
transform: translateX(0);
opacity: 1;
}
to {
transform: translateX(100%);
opacity: 0;
}
}
@keyframes ease-kf-shimmer-sweep {
0% {
background-position: -200% center;
}
100% {
background-position: 200% center;
}
}
@keyframes ease-kf-slide-image-exit {
from {
transform: translateX(0);
opacity: 1;
}
to {
transform: translateX(100%);

opacity: 0;
}
}

@keyframes ease-kf-morph-card {
from {
border-radius: 8px;
Expand Down Expand Up @@ -449,9 +419,6 @@
}
}
/* ── Animation Utility Classes ─────────────────────────────── */
.ease-zoom-in {
animation: ease-zoom-in 0.6s ease-out forwards;
}

.ease-zoom-out {
animation: ease-zoom-out 0.6s ease-out forwards;
Expand Down Expand Up @@ -513,19 +480,9 @@
animation: ease-kf-squish-button var(--ease-speed-medium) var(--ease-ease) both;

}
.ease-shimmer-sweep {
background: linear-gradient(
120deg,
transparent 30%,
rgba(255, 255, 255, 0.15) 50%,
transparent 70%
);
background-size: 200% auto;
animation: ease-kf-shimmer-sweep var(--ease-speed-slow) var(--ease-ease) infinite;
}
.ease-gradient-rotation {
background: linear-gradient(270deg,
var(--ease-color-primary),
var(--ease-color-primary),
var(--ease-color-secondary, #8b5cf6),
var(--ease-color-primary)
);
Expand Down