improve style

This commit is contained in:
csehviktor
2025-07-03 08:17:19 +02:00
parent fa7bce9c03
commit 1faf8f0763

View File

@@ -3,3 +3,17 @@
body { body {
@apply bg-[#0a0a0a] text-gray-300; @apply bg-[#0a0a0a] text-gray-300;
} }
@keyframes pulse-slow {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.6;
}
}
.animate-pulse-slow {
animation: pulse-slow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}