Skip to content
Snippets Groups Projects
Commit 5e05e9a0 authored by Malin Haugland Høli's avatar Malin Haugland Høli
Browse files

style: :wrench: Updated tailwind config for animating the vacation illustration

parent 7295c1e5
No related branches found
No related tags found
3 merge requests!66Final merge,!11Feat/startpage/design start page,!4Pipeline fix
...@@ -5,7 +5,28 @@ export default { ...@@ -5,7 +5,28 @@ export default {
"./src/**/*.{vue,js,ts,jsx,tsx}", "./src/**/*.{vue,js,ts,jsx,tsx}",
], ],
theme: { theme: {
extend: {}, extend: {
animation: {
clouds: 'clouds 20s linear infinite',
beach: 'beach 5s linear infinite',
flame: 'flame 0.3s linear infinite',
},
keyframes: {
clouds: {
'0%': { backgroundPosition: '0%' },
'100%': { backgroundPosition: '-100%' },
},
beach: {
'0%': { backgroundPosition: '0%' },
'100%': { backgroundPosition: '-100%' },
},
flame: {
'0%, 100%': { transform: 'translateX(0%)' },
'50%': { transform: 'translateX(50%)' },
},
}
},
}, },
plugins: [], plugins: [],
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment