cryptoswap-galaxy / style.css
lucacadalora's picture
make me modern crypto exchanger apps
2a6f9d9 verified
raw
history blame contribute delete
570 Bytes
@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;
}