Files

40 lines
871 B
JavaScript
Raw Permalink Normal View History

2022-11-22 09:28:51 -08:00
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: 'jit',
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
2022-11-27 23:46:00 -05:00
extend: {
animation: {
2023-03-09 17:21:10 -07:00
fadeIn: "fadeIn 1s ease-in forwards",
slideDown: "slideDown 1s ease-in forwards"
2022-11-27 23:46:00 -05:00
},
keyframes: {
fadeIn: {
"0%": { opacity: 0 },
"100%": { opacity: 1 }
2023-03-09 17:21:10 -07:00
},
slideDown: {
"0%": { position: 'absolute', display: 'none', transform: 'translateY(100%)' },
"100%": { position: 'relative', display: 'block', transform: 'translateY(0%)'}
2022-11-27 23:46:00 -05:00
}
},
},
2022-11-22 09:28:51 -08:00
},
2022-11-24 20:34:49 -05:00
plugins: [
require('@tailwindcss/typography'),
require("daisyui")
],
daisyui: {
styled: true,
themes: true,
base: true,
utils: true,
logs: true,
rtl: false,
darkTheme: "dark",
}
2022-11-22 09:28:51 -08:00
}