UI refresh (#476)

This commit is contained in:
Luke Vella 2023-02-06 12:37:31 +00:00 committed by GitHub
parent e6a13c235d
commit bba880ff4c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
53 changed files with 1198 additions and 1014 deletions

View file

@ -18,12 +18,13 @@ module.exports = {
},
popIn: {
"0%": {
transform: "scale(0.8)",
transform: "scale(0.8) translateY(-10px)",
opacity: "0",
},
"100%": {
transform: "scale(1)",
transform: "scale(1) translateY(0px)",
opacity: "1",
translateY: "0",
},
},
},
@ -44,5 +45,9 @@ module.exports = {
},
},
},
plugins: [require("@tailwindcss/forms"), require("@tailwindcss/typography")],
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
require("tailwindcss-animate"),
],
};