File size: 422 Bytes
744bca2 759147c 744bca2 759147c 744bca2 759147c 744bca2 759147c 744bca2 759147c 744bca2 |
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 |
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.loading {
animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.change-positive {
color: #10b981;
}
.change-negative {
color: #ef4444;
}
.change-neutral {
color: #64748b;
}
.dark .change-positive {
color: #34d399;
}
.dark .change-negative {
color: #f87171;
}
.dark .change-neutral {
color: #94a3b8;
} |