wip: update UI

This commit is contained in:
Jayden
2024-07-22 15:57:32 -05:00
parent cd3cd7eea2
commit 5b548060db
16 changed files with 221 additions and 116 deletions

View File

@@ -1,6 +1,23 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {},
theme: {
extend: {
animation: {
fadeIn: "fadeIn 0.5s ease-in-out",
fadeOut: "fadeOut 0.5s ease-in-out",
},
keyframes: {
fadeIn: {
"0%": { opacity: 0 },
"100%": { opacity: 1 },
},
fadeOut: {
"0%": { opacity: 1 },
"100%": { opacity: 0 },
},
},
},
},
plugins: [],
};