update
parent
8fbdeba60d
commit
87b2ccb3cf
|
@ -0,0 +1,6 @@
|
||||||
|
module.exports = {
|
||||||
|
plugins: {
|
||||||
|
tailwindcss: {},
|
||||||
|
autoprefixer: {},
|
||||||
|
},
|
||||||
|
}
|
|
@ -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")],
|
||||||
|
};
|
Loading…
Reference in New Issue