refactor: update deploy section UI with dark theme and hover animations

This commit is contained in:
2025-10-22 17:51:43 +02:00
parent f30006a983
commit 8ea15271d3
3 changed files with 42 additions and 40 deletions

View File

@@ -1,5 +1,22 @@
@import 'tailwindcss';
@theme {
--animate-scroll: scroll var(--animation-duration, 40s) var(--animation-direction, forwards) linear infinite;
@keyframes scroll {
to {
transform: translate(calc(-50% - 0.5rem));
}
}
--animate-pulse-slow: pulse 6s ease-in-out infinite;
@keyframes pulse {
'0%, 100%': { opacity: '1' },
'50%': { opacity: '0.6' }
}
}
@plugin '@tailwindcss/forms';
@theme {