feat: complete day 20 react task
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
|
||||
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: [
|
||||
"./src/**/*.{js,jsx,ts,tsx}",
|
||||
"./node_modules/tw-elements/dist/js/**/*.js",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
primaryBlue: "#4F46E5",
|
||||
"primary-light": "#4F46E550",
|
||||
},
|
||||
|
||||
keyframes: {
|
||||
wiggle: {
|
||||
"0%, 100%": { transform: "rotate(-3deg)" },
|
||||
"50%": { transform: "rotate(3deg)" },
|
||||
},
|
||||
},
|
||||
animation: {
|
||||
wiggle: "wiggle 200ms ease-in-out",
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [require("tw-elements/dist/plugin"), require("@tailwindcss/forms")],
|
||||
};
|
||||
Reference in New Issue
Block a user