Skip to content

Commit 1140be0

Browse files
authored
Update animations.css
1 parent 568928a commit 1140be0

File tree

1 file changed

+1
-36
lines changed

1 file changed

+1
-36
lines changed

animations.css

+1-36
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
}
2626
}
2727

28-
/* General scrolling animation for the chatbox */
2928
@keyframes scrollAnim {
3029
from {
3130
transform: translateY(0);
@@ -39,42 +38,8 @@
3938
animation: scrollAnim 1.5s ease-in-out infinite;
4039
}
4140

42-
/* Glowing animation for messages */
43-
@keyframes glowing {
44-
0% {
45-
box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
46-
}
47-
100% {
48-
box-shadow: 0 0 30px rgba(0, 123, 255, 1);
49-
}
50-
}
51-
52-
.message {
53-
animation: glowing 1.5s infinite alternate;
54-
}
55-
56-
/* Fade-in animation for messages */
57-
@keyframes fadeIn {
58-
from {
59-
opacity: 0;
60-
}
61-
to {
62-
opacity: 1;
63-
}
64-
}
65-
6641
.message {
67-
animation: fadeIn 0.5s ease;
68-
}
69-
70-
/* Typing indicator animation */
71-
@keyframes typingBlink {
72-
0%, 100% {
73-
opacity: 0;
74-
}
75-
50% {
76-
opacity: 1;
77-
}
42+
animation: glowing 1.5s infinite alternate, fadeIn 0.5s ease;
7843
}
7944

8045
.typing-indicator {

0 commit comments

Comments
 (0)