-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathindex.css
More file actions
51 lines (44 loc) · 824 Bytes
/
Copy pathindex.css
File metadata and controls
51 lines (44 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* Animation styles for the application */
/* Fade in animation */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.animate-fade-in {
animation: fadeIn 0.3s ease-in-out;
}
/* Scale in animation for dialog */
@keyframes scaleIn {
from {
opacity: 0;
transform: scale(0.95);
}
to {
opacity: 1;
transform: scale(1);
}
}
.animate-scale-in {
animation: scaleIn 0.2s ease-out;
}
/* Pulse animation for loading states */
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
/* Disable animations/transitions during PDF capture to avoid faded frames */
.pdf-capture-mode, .pdf-capture-mode * {
animation: none !important;
transition: none !important;
}