This commit is contained in:
2025-08-30 20:52:27 -04:00
parent e7ebccd4a9
commit f53959b38f
31 changed files with 789 additions and 479 deletions

View File

@@ -17,6 +17,20 @@ module.exports = {
minWidth: {
40: "10rem",
},
animation: {
notification:
"slideIn 0.25s ease-out forwards, slideOut 0.25s ease-out 4.5s forwards",
},
keyframes: {
slideIn: {
"0%": { transform: "translateX(100%)" },
"100%": { transform: "translateX(0)" },
},
slideOut: {
"0%": { transform: "translateX(0)" },
"100%": { transform: "translateX(100%)" },
},
},
},
},
plugins: [],