This commit is contained in:
prosety
2022-11-13 20:03:11 +01:00
parent 8d7ef80cc8
commit fc0803af46
22 changed files with 1102 additions and 321 deletions

View File

@@ -3,8 +3,28 @@ module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
height: {
'1px': '1px',
keyframes: {
blink: {
'0%': { opacity: '0' },
'100%': { opacity: '100'},
},
slide: {
'0%': { transform: 'translateX(-40px)' },
'100%': { transform: 'translateX(0px)' },
},
fadeout: {
'0%': { opacity: '1' },
'100%': { opacity: '0' },
},
popin: {
'0%': { opacity: '1' },
'100%': { opacity: '0' },
},
},
animation: {
blink: 'blink .6s infinite',
slide: 'slide .3s',
fadeout: 'fadeout .6s',
},
},
},