mirror of
https://github.com/zen-browser/www.git
synced 2025-07-07 17:05:32 +02:00
feat(NavBar, hero Image): added new navbar animations + mobile version, fixed hero image on mobile
This commit is contained in:
parent
5d6b9bb8af
commit
97d617f22c
8 changed files with 241 additions and 18 deletions
|
@ -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: [],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue