Spaces:
Running
Running
File size: 570 Bytes
2a6f9d9 08dfa29 2a6f9d9 08dfa29 2a6f9d9 08dfa29 2a6f9d9 08dfa29 2a6f9d9 08dfa29 2a6f9d9 |
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 |
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #1e293b;
}
::-webkit-scrollbar-thumb {
background: #4f46e5;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #6366f1;
}
/* Animation for crypto cards */
@keyframes float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-8px);
}
}
.crypto-card:hover {
animation: float 2s ease-in-out infinite;
} |