FEAT: switch to vite vue stack

This commit is contained in:
prosety
2022-11-25 19:27:48 +01:00
parent 2c4a48e1a6
commit 41fb802318
56 changed files with 3523 additions and 9631 deletions

35
tailwind.config.js Normal file
View File

@@ -0,0 +1,35 @@
module.exports = {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
darkMode: 'class',
theme: {
extend: {
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 .8s',
},
},
},
variants: {
extend: {},
},
plugins: [],
};