master
icechen 2022-03-14 03:58:34 +08:00
parent 8fbdeba60d
commit 87b2ccb3cf
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}

24
tailwind.config.js 100644
View File

@ -0,0 +1,24 @@
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
keyframes: {
"fade-in-down": {
"0%": {
transform: "scale(0, 1)",
},
"90%": {
transform: "scale(1.05, 1)",
},
"100%": {
transform: "scale(1, 1)",
},
},
},
animation: {
"fade-in-down": "fade-in-down 0.3s ease-out",
},
},
},
plugins: [require("@tailwindcss/forms"), require("daisyui")],
};