Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.

Commit d7c8c26

Browse files
authored
Merge pull request #192 from AGiXT/Better-activities-UI
Better activities UI
2 parents 8e8d1e3 + 4327a13 commit d7c8c26

File tree

3 files changed

+291
-119
lines changed

3 files changed

+291
-119
lines changed

app/globals.css

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,3 +210,55 @@ pre {
210210
overflow-x: auto;
211211
max-width: 100%;
212212
}
213+
214+
/* Modern activity animations */
215+
@keyframes fadeIn {
216+
from {
217+
opacity: 0;
218+
transform: translateY(-3px) scale(0.98);
219+
}
220+
to {
221+
opacity: 1;
222+
transform: translateY(0) scale(1);
223+
}
224+
}
225+
226+
@keyframes slideInFromLeft {
227+
from {
228+
opacity: 0;
229+
transform: translateX(-8px) scale(0.98);
230+
}
231+
to {
232+
opacity: 1;
233+
transform: translateX(0) scale(1);
234+
}
235+
}
236+
237+
.animate-fade-in {
238+
animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
239+
}
240+
241+
.animate-slide-in-from-left {
242+
animation: slideInFromLeft 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
243+
}
244+
245+
/* Animation delay utilities */
246+
.animation-delay-100 {
247+
animation-delay: 50ms;
248+
}
249+
250+
.animation-delay-200 {
251+
animation-delay: 100ms;
252+
}
253+
254+
.animation-delay-300 {
255+
animation-delay: 150ms;
256+
}
257+
258+
.animation-delay-400 {
259+
animation-delay: 200ms;
260+
}
261+
262+
.animation-delay-500 {
263+
animation-delay: 250ms;
264+
}

0 commit comments

Comments
 (0)