Skip to content

Commit d717f11

Browse files
committed
Add pulse animation for badge
1 parent 09a2bc0 commit d717f11

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

widget/src/styles.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,18 @@
7171
scroll-behavior: smooth;
7272
}
7373

74+
/* Badge pulse animation */
75+
@keyframes pulse {
76+
0%, 100% {
77+
opacity: 1;
78+
transform: scale(1);
79+
}
80+
50% {
81+
opacity: 0.8;
82+
transform: scale(1.02);
83+
}
84+
}
85+
7486
/* Message animations */
7587
@keyframes messageSlideIn {
7688
from {

0 commit comments

Comments
 (0)