animated sections

This commit is contained in:
Noah Paige
2022-11-27 23:46:00 -05:00
parent 1baef1f76b
commit 8ebf7b0e5b
2 changed files with 35 additions and 22 deletions
+11 -1
View File
@@ -6,7 +6,17 @@ module.exports = {
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
extend: {
animation: {
fadeIn: "fadeIn 1s ease-in forwards"
},
keyframes: {
fadeIn: {
"0%": { opacity: 0 },
"100%": { opacity: 1 }
}
},
},
},
plugins: [
require('@tailwindcss/typography'),