feat(NavBar, hero Image): added new navbar animations + mobile version, fixed hero image on mobile

This commit is contained in:
Vrezh Fedora 2025-02-06 11:04:05 +01:00
parent 5d6b9bb8af
commit 97d617f22c
8 changed files with 241 additions and 18 deletions

View file

@ -16,6 +16,20 @@ export default {
'zen-blue': '#6287f5',
'zen-green': '#63f78b',
},
keyframes: {
fadeIn: {
'0%': { opacity: 0 },
'100%': { opacity: 1 },
},
breathe: {
'50%': { transform: 'scale(1.2)' },
'0%, 100%': { transform: 'scale(1)' },
},
},
animation: {
fadeIn: 'fadeIn 2s ease-in-out',
breathe: 'breathe 5s ease-in-out infinite',
},
},
},
plugins: [],